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
| package com.platform.exception;
|
| /**
| * 前端提示异常
| * @author ChenJiaHe
| * @Date 2021-10-20
| */
| public class PlatTipsException extends RuntimeException {
|
| /**总编码*/
| private String code;
| /**子编码*/
| private String subCode = "100";
|
| public PlatTipsException( String code,String message) {
| super(message);
| this.code = code;
| }
|
| public PlatTipsException( String code,String subCode,String message) {
| super(message);
| this.code = code;
| this.subCode = subCode;
| }
|
| public PlatTipsException( String code,String message, Throwable cause) {
| super(message, cause);
| this.code = code;
| }
|
| public PlatTipsException( String code,String subCode,String message, Throwable cause) {
| super(message, cause);
| this.code = code;
| this.subCode = subCode;
| }
|
| public PlatTipsException(String code,Throwable cause) {
| super(cause);
| this.code = code;
| }
|
|
|
| public String getCode() {
| return code;
| }
|
| public void setCode(String code) {
| this.code = code;
| }
|
| public String getSubCode() {
| return subCode;
| }
|
| public void setSubCode(String subCode) {
| this.subCode = subCode;
| }
| }
|
|