public class AbortCronJobException extends Exception
Job an error occurs which can not be
handle by the Job itself.| Constructor and Description |
|---|
AbortCronJobException()
Creates a new
AbortCronJobException with null as its detail message. |
AbortCronJobException(String message)
Creates a new
AbortCronJobException with the specified message. |
AbortCronJobException(String message,
Throwable cause)
Creates a new
AbortCronJobException with the specified detail message and cause. |
AbortCronJobException(Throwable cause)
Creates a new
AbortCronJobException with the specified cause and a detail message of (cause==null ?
null : cause.toString()) (which typically contains the class and detail message of cause). |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic AbortCronJobException(String message)
AbortCronJobException with the specified message.message - the message of the exceptionpublic AbortCronJobException()
AbortCronJobException with null as its detail message.public AbortCronJobException(String message, Throwable cause)
AbortCronJobException with the specified detail message and cause.message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value
is permitted, and indicates that the cause is nonexistent or unknown.)public AbortCronJobException(Throwable cause)
AbortCronJobException with the specified cause and a detail message of (cause==null ?
null : cause.toString()) (which typically contains the class and detail message of cause).cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value
is permitted, and indicates that the cause is nonexistent or unknown.)Copyright © 2017 SAP SE. All Rights Reserved.