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:
java.io.Serializable
public class AbortCronJobException extends java.lang.Exception
An AbortCronJobException is thrown when during the execution of aJob
an error occurs which can not be handle by theJob
itself.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbortCronJobException()
Creates a newAbortCronJobException
with null as its detail message.AbortCronJobException(java.lang.String message)
Creates a newAbortCronJobException
with the specified message.AbortCronJobException(java.lang.String message, java.lang.Throwable cause)
Creates a newAbortCronJobException
with the specified detail message and cause.AbortCronJobException(java.lang.Throwable cause)
Creates a newAbortCronJobException
with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
-
-
-
Constructor Detail
-
AbortCronJobException
public AbortCronJobException(java.lang.String message)
Creates a newAbortCronJobException
with the specified message.- Parameters:
message
- the message of the exception
-
AbortCronJobException
public AbortCronJobException()
Creates a newAbortCronJobException
with null as its detail message.- Since:
- 4.3
-
AbortCronJobException
public AbortCronJobException(java.lang.String message, java.lang.Throwable cause)
Creates a newAbortCronJobException
with 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
public AbortCronJobException(java.lang.Throwable cause)
Creates a newAbortCronJobException
with 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
-
-