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