admin
2022-04-09 ce3420676d9ccf4a2bdf87aeb7ad1494b5e5d26c
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
package com.yeshi.makemoney.app.exception.money;
 
import com.ks.lib.common.exception.BaseException;
 
public class ExtractException extends BaseException {
 
    //用户错误
    public final static int CODE_USER_ERROR = 101;
 
    public final static int CODE_EXTRACT_CONFIG_ERROR = 201;
 
    public final static int CODE_MONEY_LIMIT = 301;
 
    //小金额提现次数限制
    public final static int CODE_LITTLE_MONEY_LIMIT = 302;
 
    //已经处理
    public final static int CODE_ALREADY_DONE = 401;
 
 
    public ExtractException(int code, String msg) {
        super(code, msg);
    }
 
}