Class JobExecutionException

All Implemented Interfaces:
Serializable, HasFriendlyErrorMessage

public class JobExecutionException extends AnchorFriendlyCheckedException
An exception that occurs when a job is executed. This should always contain a friendly error message to the user
Author:
Owen Feehan
See Also:
  • Constructor Details

    • JobExecutionException

      public JobExecutionException(String message)
      Creates with a message only, but no cause.
      Parameters:
      message - the message.
    • JobExecutionException

      public JobExecutionException(Throwable cause)
      Creates with a cause only, but no message.
      Parameters:
      cause - the cause.
    • JobExecutionException

      public JobExecutionException(String message, Throwable cause)
      A string message displayed to the user as well as a stack-trace of the cause.
      Parameters:
      message - the error message displayed to the user.
      cause - cause of the error, and a stack trace is displayed to the user.