Class AbortCronJobException

java.lang.Object
java.lang.Throwable
java.lang.Exception
de.hybris.platform.cronjob.jalo.AbortCronJobException
All Implemented Interfaces:
Serializable

public class AbortCronJobException extends Exception
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 Details

    • AbortCronJobException

      public AbortCronJobException(String message)
      Creates a new AbortCronJobException with the specified message.
      Parameters:
      message - the message of the exception
    • AbortCronJobException

      public AbortCronJobException()
      Creates a new AbortCronJobException with null as its detail message.
      Since:
      4.3
    • AbortCronJobException

      public AbortCronJobException(String message, Throwable cause)
      Creates a new AbortCronJobException with the specified detail message and cause.
      Parameters:
      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.)
      Since:
      4.3
    • AbortCronJobException

      public 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).
      Parameters:
      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.)
      Since:
      4.3