com.ibm.websphere.scheduler

Class SchedulerException

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.websphere.scheduler.SchedulerException
All implemented interfaces:
java.io.Serializable
Direct known subclasses:
IllegalTaskState, NotificationException, NotificationSinkInvalid, SchedulerNotAvailableException, TaskInfoInvalid, TaskInvalid, TaskPending, UserCalendarException

  1. public class SchedulerException
  2. extends java.lang.Exception
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

Constructor Summary

Constructor and Description
SchedulerException()
SchedulerException(java.lang.String s)
SchedulerException(java.lang.String s,java.lang.Throwable t)
SchedulerException(java.lang.Throwable t)

Method Summary

Modifier and Type Method and Description
  1. java.lang.Throwable
getCause()
Return the Throwable that is considered the root cause of this SchedulerException.
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

SchedulerException

  1. public SchedulerException()

SchedulerException

  1. public SchedulerException(java.lang.String s)

SchedulerException

  1. public SchedulerException(java.lang.Throwable t)

SchedulerException

  1. public SchedulerException(java.lang.String s,
  2. java.lang.Throwable t)

Method Detail

getCause

  1. 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.
Overrides:
getCause in class java.lang.Throwable
Returns:
the Throwable that is the cause of this SchedulerException, or null if the cause is nonexistent or unknown.
Since:
5.0