mirror of
https://gitee.com/dromara/hutool.git
synced 2026-01-18 19:51:38 +08:00
add constructor
This commit is contained in:
@@ -28,6 +28,10 @@ public class JWTException extends RuntimeException {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public JWTException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, throwable, enableSuppression, writableStackTrace);
|
||||
}
|
||||
|
||||
public JWTException(Throwable throwable, String messageTemplate, Object... params) {
|
||||
super(StrUtil.format(messageTemplate, params), throwable);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user