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