add constrctor

This commit is contained in:
Looly
2021-08-30 10:59:11 +08:00
parent 3e23982329
commit 9ba4b008b2
2 changed files with 6 additions and 2 deletions

View File

@@ -37,6 +37,10 @@ public class ValidateException extends StatefulException {
super(status, throwable);
}
public ValidateException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
super(message, throwable, enableSuppression, writableStackTrace);
}
public ValidateException(int status, String msg, Throwable throwable) {
super(status, msg, throwable);
}