admin
2022-05-06 8cc3c660bdaaaa6a46eecadb78e4e9c17a07c227
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.yeshi.makemoney.app.exception.goldcorn;
 
import com.ks.lib.common.exception.BaseException;
 
public class GoldCornMakeException extends BaseException {
 
    //获取频率受限
    public final static int CODE_GET_FREQUENCY_LIMIT = 101;
 
    //添加记录出错
    public final static int CODE_ADD_RECORD_ERROR = 201;
 
 
    private int code;
    private String msg;
 
    public GoldCornMakeException(int code, String msg) {
        super(code, msg);
        this.code = code;
        this.msg = msg;
    }
 
 
}