uw.task.TaskException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uw-task Show documentation
Show all versions of uw-task Show documentation
uw-task包是一个分布式任务框架,通过uw-task可以快速构建基于docker的分布式任务体系,同时支持基于influx的任务运维监控。
package uw.task;
/**
* 任务异常。
* @author axeon
*
*/
public class TaskException extends Exception {
/**
* serialVersionUID
的注释
*/
private static final long serialVersionUID = 8713460933603499992L;
public TaskException() {
super();
}
public TaskException(String msg) {
super(msg);
}
public TaskException(Throwable nestedThrowable) {
super(nestedThrowable);
}
public TaskException(String msg, Throwable nestedThrowable) {
super(msg, nestedThrowable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy