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.ExceptionAn AbortCronJobException is thrown when during the execution of aJoban error occurs which can not be handle by theJobitself.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbortCronJobException()Creates a newAbortCronJobExceptionwith null as its detail message.AbortCronJobException(java.lang.String message)Creates a newAbortCronJobExceptionwith the specified message.AbortCronJobException(java.lang.String message, java.lang.Throwable cause)Creates a newAbortCronJobExceptionwith the specified detail message and cause.AbortCronJobException(java.lang.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).
-
-
-
Constructor Detail
-
AbortCronJobException
public AbortCronJobException(java.lang.String message)
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
public AbortCronJobException(java.lang.String message, java.lang.Throwable cause)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
public AbortCronJobException(java.lang.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).- 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
-
-