Class SchedulingException

All Implemented Interfaces:
Serializable

public class SchedulingException extends NestedRuntimeException
General exception to be thrown on scheduling failures, such as the scheduler already having shut down. Unchecked since scheduling failures are usually fatal.
Since:
2.0
Author:
Juergen Hoeller
See Also:
  • Constructor Details

    • SchedulingException

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

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