Class AbortCronJobException

  • All Implemented Interfaces:
    java.io.Serializable

    public class AbortCronJobException
    extends java.lang.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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      AbortCronJobException()
      Creates a new AbortCronJobException with null as its detail message.
      AbortCronJobException​(java.lang.String message)
      Creates a new AbortCronJobException with the specified message.
      AbortCronJobException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new AbortCronJobException with the specified detail message and cause.
      AbortCronJobException​(java.lang.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).
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AbortCronJobException

        public AbortCronJobException​(java.lang.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​(java.lang.String message,
                                     java.lang.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​(java.lang.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