1
2
3
4
5 package gboat2.approve.service;
6
7 import gboat2.base.bridge.exception.GboatNestedException;
8
9
10
11
12
13
14
15
16
17
18 public class ApproveException extends GboatNestedException {
19
20 private static final long serialVersionUID = 1L;
21
22
23
24
25 public ApproveException() {
26 super();
27 }
28
29
30
31
32
33
34 public ApproveException(String message, Throwable cause) {
35 super(message, cause);
36 }
37
38
39
40
41
42
43
44 public ApproveException(String message, Throwable cause, String errorCode) {
45 super(message, cause, errorCode);
46 }
47
48
49
50
51
52 public ApproveException(String message) {
53 super(message);
54 }
55
56
57
58
59
60
61 public ApproveException(String message, String errorCode) {
62 super(message, errorCode);
63 }
64
65
66
67
68
69 public ApproveException(Throwable cause) {
70 super(cause);
71 }
72
73
74
75
76
77
78 public ApproveException(Throwable cause, String errorCode) {
79 super(cause, errorCode);
80 }
81
82 }