package com.ks.app.exception.user;
|
|
import com.ks.lib.common.exception.BaseException;
|
|
/**
|
* @author hxh
|
* @title: LoginException
|
* @description: 账户异常
|
* @date 2021/11/16 18:23
|
*/
|
public class UserAccountException extends BaseException {
|
|
|
|
//已经绑定
|
public final static int CODE_ALREAD_BIND = 201;
|
|
//微信信息出错
|
public final static int CODE_ERROR_WX_INFO = 102;
|
|
//电话号码出错
|
public final static int CODE_ERROR_PHONE = 103;
|
|
//用户错误
|
public final static int CODE_USER_ERROR = 101;
|
|
public UserAccountException(int code, String msg) {
|
super(code, msg);
|
}
|
|
}
|