admin
2022-04-01 14c0cd0ea9eb372cd5db511c788b2daa3cc7069b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_ALREADY_DONE = 401;
 
 
    public ExtractException(int code, String msg) {
        super(code, msg);
    }
 
}