ScheduleException.java
343 Bytes
package com.bsth.service.schedule.exception;
/**
* Created by xu on 16/12/5.
*/
public class ScheduleException extends Exception {
public ScheduleException(String message) {
super("计划调度业务错误==>>" + message);
}
public ScheduleException(Throwable throwable) {
super(throwable);
}
}