1 package gboat2.base.bridge.exception;
2
3
4
5
6
7
8 public class DefaultBusinessNestedException extends BusinessNestedException {
9 private static final long serialVersionUID = -1657938434382769721L;
10
11 public DefaultBusinessNestedException() {
12 super();
13 }
14
15 public DefaultBusinessNestedException(String message, String errorCode) {
16 super(message, errorCode);
17 }
18
19 public DefaultBusinessNestedException(String message, Throwable cause, String errorCode) {
20 super(message, cause, errorCode);
21 }
22
23 public DefaultBusinessNestedException(String message, Throwable cause) {
24 super(message, cause);
25 }
26
27 public DefaultBusinessNestedException(String message) {
28 super(message);
29 }
30
31 public DefaultBusinessNestedException(Throwable cause, String errorCode) {
32 super(cause, errorCode);
33 }
34
35 public DefaultBusinessNestedException(Throwable cause) {
36 super(cause);
37 }
38 }