mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
33 lines
813 B
Java
33 lines
813 B
Java
package cn.hutool.cron;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
/**
|
|
* 定时任务异常
|
|
*
|
|
* @author xiaoleilu
|
|
*/
|
|
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);
|
|
}
|
|
}
|