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);
}

View File

@ -11,7 +11,7 @@
<version>5.7.11-SNAPSHOT</version>
<name>hutool</name>
<description>Hutool是一个小而全的Java工具类库通过静态方法封装降低相关API的学习成本提高工作效率使Java拥有函数式语言般的优雅让Java语言也可以“甜甜的”。</description>
<url>https://github.com/looly/hutool</url>
<url>https://github.com/dromara/hutool</url>
<modules>
<module>hutool-all</module>
@ -70,7 +70,7 @@
<licenses>
<license>
<name>Mulan Permissive Software LicenseVersion 1</name>
<name>Mulan Permissive Software LicenseVersion 2</name>
<url>https://license.coscl.org.cn/MulanPSL2</url>
</license>
</licenses>