fwq
2023-11-07 72950f60dee7b842c81feea579ec02b078914e78
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
36
37
38
package com.hx.exception;
 
/**
 * 前端提示异常
 * @author ChenJiaHe
 * @Date 2020-06-19
 */
public class TipsException extends RuntimeException {
 
    private Integer code;
 
    public TipsException(String message) {
        super(message);
    }
 
    public TipsException(String message, Integer code) {
        super(message);
        this.code = code;
    }
 
    public TipsException(String message, Throwable cause, Integer code) {
        super(message, cause);
        this.code = code;
    }
 
    public TipsException(Throwable cause, Integer code) {
        super(cause);
        this.code = code;
    }
 
    public Integer getCode() {
        return code;
    }
 
    public void setCode(Integer code) {
        this.code = code;
    }
}