admin
2019-11-08 ae6bf015031bd6579cc719ee7689d8160e3d92d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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();
    }
 
}