类 SchedulingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.scheduling.SchedulingException
所有已实现的接口:
Serializable

public class SchedulingException extends cn.taketoday.core.NestedRuntimeException
General exception to be thrown on scheduling failures, such as the scheduler already having shut down. Unchecked since scheduling failures are usually fatal.
从以下版本开始:
4.0
作者:
Juergen Hoeller
另请参阅:
  • 构造器详细资料

    • SchedulingException

      public SchedulingException(String msg)
      Constructor for SchedulingException.
      参数:
      msg - the detail message
    • SchedulingException

      public SchedulingException(String msg, Throwable cause)
      Constructor for SchedulingException.
      参数:
      msg - the detail message
      cause - the root cause (usually from using a underlying scheduling API such as Quartz)