admin
2022-05-12 fa705507ba574c857b1667553737d23b1b7ff495
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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);
    }
 
}