mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.panzhihua.common.exceptions;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 服务层业务异常
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-28 14:13
 **/
public class ServiceException extends RuntimeException {
 
    private String code;
    private String msg;
    private String data;
 
    public ServiceException() {
        super();
    }
 
    public ServiceException(String errorMsg) {
        super(errorMsg);
        this.msg = errorMsg;
    }
 
    public ServiceException(String errorCode, String errorMsg) {
        super(errorCode);
        this.code = errorCode;
        this.msg = errorMsg;
    }
 
    public ServiceException(String errorCode, String errorMsg, String data) {
        super(errorCode);
        this.code = errorCode;
        this.msg = errorMsg;
        this.data = data;
    }
 
    public ServiceException(String errorCode, String errorMsg, Throwable cause) {
        super(errorCode, cause);
        this.code = errorCode;
        this.msg = errorMsg;
    }
 
    public String getErrorCode() {
        return code;
    }
 
    public void setErrorCode(String errorCode) {
        this.code = errorCode;
    }
 
    public String getErrorMsg() {
        return msg;
    }
 
    public void setErrorMsg(String errorMsg) {
        this.msg = errorMsg;
    }
 
    public String getMessage() {
        return msg;
    }
 
    @Override
    public Throwable fillInStackTrace() {
        return this;
    }
}