admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
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);
    }
 
}