com.ibm.websphere.scheduler
Class SchedulerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.ws.exception.WsException
com.ibm.websphere.scheduler.SchedulerException
- All Implemented Interfaces:
- java.io.Serializable, com.ibm.ws.exception.WsNestedException
- Direct Known Subclasses:
- IllegalTaskState, NotificationException, NotificationSinkInvalid, SchedulerNotAvailableException, TaskInfoInvalid, TaskInvalid, TaskPending, UserCalendarException
- public class SchedulerException
- extends com.ibm.ws.exception.WsException
A general Scheduler exception.
This class is the super class for all expected Scheduler exceptions.
Applications can use this exception to catch all expected exceptions thrown
by the scheduler.
- Since:
- 5.0
- Version:
- 5.0
- See Also:
- Serialized Form
Method Summary |
java.lang.Throwable |
getCause()
Return the Throwable that is considered the root cause of this SchedulerException. |
Methods inherited from class com.ibm.ws.exception.WsException |
initCause, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
SchedulerException
public SchedulerException()
SchedulerException
public SchedulerException(java.lang.String s)
SchedulerException
public SchedulerException(java.lang.Throwable t)
SchedulerException
public SchedulerException(java.lang.String s,
java.lang.Throwable t)
getCause
public java.lang.Throwable getCause()
- Return the Throwable that is considered the root cause of this SchedulerException.
Null is returned if the root cause is nonexistent or unknown. The root cause is
the throwable that caused this SchedulerException to get thrown.
- Returns:
- the Throwable that is the cause of this SchedulerException, or null if the cause
is nonexistent or unknown.
- Since:
- 5.0