admin
2020-03-20 f0d06601a6be8c09ef5e8e7e76666cb1e8ef72a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.fanli.exception.config;
 
import com.yeshi.fanli.exception.BaseException;
 
public class ConfigException extends BaseException {
 
    public final static int CODE_VERIFY = 1;
 
    private static final long serialVersionUID = 1L;
    
    public ConfigException(int code, String msg) {
        super(code, msg);
    }
 
    public ConfigException() {
        super();
    }
}