admin
2022-05-06 8cc3c660bdaaaa6a46eecadb78e4e9c17a07c227
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.makemoney.app.exception.money;
 
import com.ks.lib.common.exception.BaseException;
 
public class UserMoneyBalanceException extends BaseException {
 
 
    //账户余额不足
    public final static int CODE_BALANCE_NOT_ENOUGH = 101;
 
 
    public final static int CODE_MONEY_RECORD_ERROR = 201;
 
    public UserMoneyBalanceException(int code, String msg) {
        super(code, msg);
    }
 
}