diff --git a/hutool-core/src/main/java/cn/hutool/core/exceptions/ValidateException.java b/hutool-core/src/main/java/cn/hutool/core/exceptions/ValidateException.java
index 0d7f83e6c..98423d60f 100644
--- a/hutool-core/src/main/java/cn/hutool/core/exceptions/ValidateException.java
+++ b/hutool-core/src/main/java/cn/hutool/core/exceptions/ValidateException.java
@@ -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);
}
diff --git a/pom.xml b/pom.xml
index 787356736..6e6703cb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
5.7.11-SNAPSHOT
hutool
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
- https://github.com/looly/hutool
+ https://github.com/dromara/hutool
hutool-all
@@ -70,7 +70,7 @@
- Mulan Permissive Software License,Version 1
+ Mulan Permissive Software License,Version 2
https://license.coscl.org.cn/MulanPSL2