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