Class SchedulerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opencastproject.scheduler.api.SchedulerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SchedulerConflictException
Thrown when a scheduled event can not be saved or loaded from persistence.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSchedulerException(String message) Build a new scheduler exception with a messageSchedulerException(String message, Throwable cause) Build a new scheduler exception with a message and an original cause.SchedulerException(Throwable cause) Build a new scheduler exception from the original cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SchedulerException
Build a new scheduler exception with a message and an original cause.- Parameters:
message- the error messagecause- the original exception causing this scheduler exception to be thrown
-
SchedulerException
Build a new scheduler exception from the original cause.- Parameters:
cause- the original exception causing this scheduler exception to be thrown
-
SchedulerException
Build a new scheduler exception with a message- Parameters:
message- the error message
-