org.quartz
Class SchedulerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.quartz.SchedulerException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- JmsJobException, JobExecutionException, JobPersistenceException, SchedulerConfigException, UnableToInterruptJobException
public class SchedulerException
- extends Exception
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
.
- Author:
- James House
- See Also:
- Serialized Form
SchedulerException
public SchedulerException()
SchedulerException
public SchedulerException(String msg)
SchedulerException
public SchedulerException(Throwable cause)
SchedulerException
public SchedulerException(String msg,
Throwable cause)
getUnderlyingException
public Throwable getUnderlyingException()
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.
- Returns:
- the underlying exception, or
null
if there is not
one.
toString
public String toString()
- Overrides:
toString
in class Throwable
Copyright 2001-2015, Terracotta, Inc.