All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.cron.CronException Maven / Gradle / Ivy

There is a newer version: 5.8.27
Show newest version
package cn.hutool.cron;

import cn.hutool.core.util.StrUtil;

/**
 * 定时任务异常
 * @author xiaoleilu
 */
public class CronException extends RuntimeException{
	private static final long serialVersionUID = 8247610319171014183L;

	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(Throwable throwable, String messageTemplate, Object... params) {
		super(StrUtil.format(messageTemplate, params), throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy