Package org.silverpeas.core.scheduler
Class SchedulerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.kernel.SilverpeasException
-
- org.silverpeas.core.scheduler.SchedulerException
-
- All Implemented Interfaces:
Serializable
public class SchedulerException extends org.silverpeas.kernel.SilverpeasException
Exception thrown when an error occurs within the scheduler.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchedulerException(String aMessage)
Constructs a SchedulerException with the specified message.SchedulerException(String message, Throwable cause)
Constructs a SchedulerException with the specified message and cause.SchedulerException(Throwable cause)
Constructs a SchedulerException with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SchedulerException
public SchedulerException(String aMessage)
Constructs a SchedulerException with the specified message.- Parameters:
aMessage
- the message about that exception.
-
SchedulerException
public SchedulerException(Throwable cause)
Constructs a SchedulerException with the specified cause.- Parameters:
cause
- the exception that caused this one.
-
-