admin
2022-04-01 14c0cd0ea9eb372cd5db511c788b2daa3cc7069b
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);
    }
 
}