admin
2022-09-30 ffc56f912da5d6d842142ae4ea1856bc56f8bcb9
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
27
28
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 final static int CODE_WX_PAY_ACCOUNT_NO_MONEY = 801;
 
 
    public ExtractException(int code, String msg) {
        super(code, msg);
    }
 
}