E1ED922C1E9526DD63272D7EC5C6CB77
2020-12-14 98118c2bf5343dde3dbf48c20bc8a0fd69cfedbd
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
32
33
34
35
package com.hx.exception;
 
/**
 * 登录提示异常
 * @author ChenJiaHe
 * @Date 2020-11-17
 */
public class LoginException extends RuntimeException {
 
    private Integer code;
 
    public LoginException(String message) {
        super(message);
    }
 
    public LoginException(String message, Integer code) {
        super(message);
        this.code = code;
    }
 
    public LoginException(String message, Throwable cause, Integer code) {
        super(message, cause);
        this.code = code;
    }
 
    public LoginException(Throwable cause, Integer code) {
        super(cause);
        this.code = code;
    }
 
    //@Override
    public int getCode() {
        return this.code;
    }
}