org.quartz
Class UnableToInterruptJobException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.quartz.SchedulerException
                    |
                    +--org.quartz.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

Fields inherited from class org.quartz.SchedulerException
ERR_BAD_CONFIGURATION, ERR_CLIENT_ERROR, ERR_COMMUNICATION_FAILURE, ERR_JOB_EXECUTION_THREW_EXCEPTION, ERR_JOB_LISTENER, ERR_JOB_LISTENER_NOT_FOUND, ERR_PERSISTENCE, ERR_PERSISTENCE_CALENDAR_DOES_NOT_EXIST, ERR_PERSISTENCE_CRITICAL_FAILURE, ERR_PERSISTENCE_JOB_DOES_NOT_EXIST, ERR_PERSISTENCE_TRIGGER_DOES_NOT_EXIST, ERR_THREAD_POOL, ERR_THREAD_POOL_CRITICAL_FAILURE, ERR_THREAD_POOL_EXHAUSTED, ERR_TIME_BROKER_FAILURE, ERR_TRIGGER_LISTENER, ERR_TRIGGER_LISTENER_NOT_FOUND, ERR_TRIGGER_THREW_EXCEPTION, ERR_UNSPECIFIED, ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION
 
Constructor Summary
UnableToInterruptJobException(java.lang.Exception cause)
           Create a UnableToInterruptJobException with the given cause.
UnableToInterruptJobException(java.lang.String msg)
           Create a UnableToInterruptJobException with the given message.
 
Methods inherited from class org.quartz.SchedulerException
getErrorCode, getUnderlyingException, isClientError, isConfigurationError, isJobListenerError, isPersistenceError, isThreadPoolError, isTriggerListenerError, printStackTrace, printStackTrace, printStackTrace, setErrorCode, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage
 
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.Exception cause)

Create a UnableToInterruptJobException with the given cause.


Quartz Project Page