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