java.lang.Objectjava.lang.Throwable
java.lang.Exception
org.quartz.SchedulerException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SchedulerConfigException, ObjectAlreadyExistsException, LockException, JmsJobException, NoSuchDelegateException, UnableToInterruptJobException, JobPersistenceException, JobExecutionException, CriticalSchedulerException
Base class for exceptions thrown by the Quartz Scheduler .
SchedulerException s may contain a reference to another
Exception, which was the underlying cause of the SchedulerException.
James - House| Field Summary | ||
|---|---|---|
| public static final int | ERR_UNSPECIFIED | |
| public static final int | ERR_BAD_CONFIGURATION | |
| public static final int | ERR_TIME_BROKER_FAILURE | |
| public static final int | ERR_CLIENT_ERROR | |
| public static final int | ERR_COMMUNICATION_FAILURE | |
| public static final int | ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION | |
| public static final int | ERR_PERSISTENCE | |
| public static final int | ERR_PERSISTENCE_JOB_DOES_NOT_EXIST | |
| public static final int | ERR_PERSISTENCE_CALENDAR_DOES_NOT_EXIST | |
| public static final int | ERR_PERSISTENCE_TRIGGER_DOES_NOT_EXIST | |
| public static final int | ERR_PERSISTENCE_CRITICAL_FAILURE | |
| public static final int | ERR_THREAD_POOL | |
| public static final int | ERR_THREAD_POOL_EXHAUSTED | |
| public static final int | ERR_THREAD_POOL_CRITICAL_FAILURE | |
| public static final int | ERR_JOB_LISTENER | |
| public static final int | ERR_JOB_LISTENER_NOT_FOUND | |
| public static final int | ERR_TRIGGER_LISTENER | |
| public static final int | ERR_TRIGGER_LISTENER_NOT_FOUND | |
| public static final int | ERR_JOB_EXECUTION_THREW_EXCEPTION | |
| public static final int | ERR_TRIGGER_THREW_EXCEPTION | |
| Constructor: |
|---|
|
|
|
|
|
|
| Method from org.quartz.SchedulerException Summary: |
|---|
| getErrorCode, getUnderlyingException, isClientError, isConfigurationError, isJobListenerError, isPersistenceError, isThreadPoolError, isTriggerListenerError, printStackTrace, printStackTrace, printStackTrace, setErrorCode, toString |
| Methods from java.lang.Throwable: |
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.quartz.SchedulerException Detail: |
|---|
Get the error code associated with this exception. This may be used to find more detail about the cause of the error. |
Return the exception that is the underlying cause of this exception. This may be used to find more detail about the cause of the error. |
Determine if the specified error code is in the |
Determine if the specified error code is in the |
Determine if the specified error code is in the |
Determine if the specified error code is in the |
Determine if the specified error code is in the |
Determine if the specified error code is in the |
Print a stack trace to the standard error stream. This overridden version will print the nested stack trace if available, otherwise it prints only this exception's stack. |
Print a stack trace to the specified stream. This overridden version will print the nested stack trace if available, otherwise it prints only this exception's stack. |
Print a stack trace to the specified writer. This overridden version will print the nested stack trace if available, otherwise it prints this exception's stack. |
Get the error code associated with this exception. This may be used to provide more detail about the cause of the error. |
|