Package org.quartz

Class UnableToInterruptJobException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UnableToInterruptJobException
    extends SchedulerException
    An exception that is thrown to indicate that a call to InterruptableJob.interrupt() failed without interrupting the Job.
    Author:
    James House
    See Also:
    InterruptableJob.interrupt(), Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UnableToInterruptJobException​(java.lang.String msg)
      Create a UnableToInterruptJobException with the given message.
      UnableToInterruptJobException​(java.lang.Throwable cause)
      Create a UnableToInterruptJobException with the given cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • UnableToInterruptJobException

        public UnableToInterruptJobException​(java.lang.String msg)

        Create a UnableToInterruptJobException with the given message.

      • UnableToInterruptJobException

        public UnableToInterruptJobException​(java.lang.Throwable cause)

        Create a UnableToInterruptJobException with the given cause.