ChenJiaHe
2020-10-16 3fde78070037d46fb2af7240de41b47a8c3fab4a
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
package com.hx.exception;
 
/** 判断异常/业务异常
 * @author ChenJiaHe
 * @Date 2020-06-19
 */
public class ServiceException extends RuntimeException {
 
    private Integer code;
 
    public ServiceException(String message) {
        super(message);
    }
 
    public ServiceException(String message, Integer code) {
        super(message);
        this.code = code;
    }
 
    public ServiceException(String message, Throwable cause, Integer code) {
        super(message, cause);
        this.code = code;
    }
 
    public ServiceException(Throwable cause, Integer code) {
        super(cause);
        this.code = code;
    }
 
    //@Override
    public int getCode() {
        return this.code;
    }
}