admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/exception/shop/FuLuChargeException.java
@@ -1,26 +1,26 @@
package com.yeshi.fanli.exception.shop;
import com.yeshi.fanli.exception.BaseException;
/**
 * 福禄充值异常
 *
 * @author Administrator
 *
 */
public class FuLuChargeException extends BaseException {
   public static int CODE_BALANCE_NOT_ENOUGH = 2004;// 账户余额不足
   public static int CODE_ORDER_NO_EXIST = 4010;// 订单号已经存在
   private static final long serialVersionUID = 572112205824229000L;
   public FuLuChargeException(int code, String msg) {
      super(code, msg);
   }
   public FuLuChargeException() {
      super();
   }
}
package com.yeshi.fanli.exception.shop;
import com.yeshi.fanli.exception.BaseException;
/**
 * 福禄充值异常
 *
 * @author Administrator
 *
 */
public class FuLuChargeException extends BaseException {
   public static int CODE_BALANCE_NOT_ENOUGH = 2004;// 账户余额不足
   public static int CODE_ORDER_NO_EXIST = 4010;// 订单号已经存在
   private static final long serialVersionUID = 572112205824229000L;
   public FuLuChargeException(int code, String msg) {
      super(code, msg);
   }
   public FuLuChargeException() {
      super();
   }
}