1
2
3
4
5 package gboat2.web.exception;
6
7 import gboat2.base.bridge.exception.DefaultGboatNestedException;
8
9
10
11
12
13 public class ConfigBusinessNestedException extends DefaultGboatNestedException {
14
15
16
17 private static final long serialVersionUID = -38444323083127316L;
18
19 public ConfigBusinessNestedException() {
20 super();
21 }
22
23 public ConfigBusinessNestedException(String message, String errorCode) {
24 super(message, errorCode);
25 }
26
27 public ConfigBusinessNestedException(String message, Throwable cause, String errorCode) {
28 super(message, cause, errorCode);
29 }
30
31 public ConfigBusinessNestedException(String message, Throwable cause) {
32 super(message, cause);
33 }
34
35 public ConfigBusinessNestedException(String message) {
36 super(message);
37 }
38
39 public ConfigBusinessNestedException(Throwable cause, String errorCode) {
40 super(cause, errorCode);
41 }
42
43 public ConfigBusinessNestedException(Throwable cause) {
44 super(cause);
45 }
46
47 }