Package de.hybris.platform.cronjob.jalo
Class AbortCronJobException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.hybris.platform.cronjob.jalo.AbortCronJobException
- All Implemented Interfaces:
Serializable
An AbortCronJobException is thrown when during the execution of a
Job an error occurs which can not be
handle by the Job itself.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newAbortCronJobExceptionwith null as its detail message.AbortCronJobException(String message) Creates a newAbortCronJobExceptionwith the specified message.AbortCronJobException(String message, Throwable cause) Creates a newAbortCronJobExceptionwith the specified detail message and cause.AbortCronJobException(Throwable cause) Creates a newAbortCronJobExceptionwith the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of 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
-
AbortCronJobException
Creates a newAbortCronJobExceptionwith the specified message.- Parameters:
message- the message of the exception
-
AbortCronJobException
public AbortCronJobException()Creates a newAbortCronJobExceptionwith null as its detail message.- Since:
- 4.3
-
AbortCronJobException
Creates a newAbortCronJobExceptionwith the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 4.3
-
AbortCronJobException
Creates a newAbortCronJobExceptionwith the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 4.3
-