add constructor

This commit is contained in:
Looly
2021-08-26 23:40:28 +08:00
parent c0510a4c66
commit d66efef873
24 changed files with 146 additions and 67 deletions

View File

@@ -4,23 +4,28 @@ import cn.hutool.core.util.StrUtil;
/**
* 定时任务异常
*
* @author xiaoleilu
*/
public class CronException extends RuntimeException{
public class CronException extends RuntimeException {
private static final long serialVersionUID = 1L;
public CronException(Throwable e) {
super(e.getMessage(), e);
}
public CronException(String message) {
super(message);
}
public CronException(String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params));
}
public CronException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
super(message, throwable, enableSuppression, writableStackTrace);
}
public CronException(Throwable throwable, String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params), throwable);
}