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);
|
}
|
|
}
|