parent
b2c62e2c76
commit
4106552558
@ -1,26 +0,0 @@
|
||||
package ${basePackage}.frame.schedule.exception;
|
||||
|
||||
/**
|
||||
* 任务运行异常
|
||||
*
|
||||
* @author wangbing
|
||||
* @version 0.0.1
|
||||
* @since 2017-01-01
|
||||
*/
|
||||
public class TaskRunException extends RuntimeException {
|
||||
|
||||
private String taskId;
|
||||
|
||||
public TaskRunException(String s, String taskId) {
|
||||
super(s);
|
||||
this.taskId = taskId;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
|
||||
public void setTaskId(String taskId) {
|
||||
this.taskId = taskId;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue