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();
|
}
|
|
}
|