Class NoSuchJobException

All Implemented Interfaces:
Serializable

public class NoSuchJobException extends NotFoundException
An exception thrown when a job is not found. This exception is typically used to indicate that a requested job does not exist in the system.
See Also:
  • Constructor Details

    • NoSuchJobException

      @FormatMethod public NoSuchJobException(@FormatString String message, Object... args)
      Constructs a new NoSuchJobException with the specified detail message.
      Parameters:
      message - the detail message.
      args - the arguments to the message.
    • NoSuchJobException

      @FormatMethod public NoSuchJobException(Throwable cause, @FormatString String message, Object... args)
      Constructs a new NoSuchJobException with the specified detail message and cause.
      Parameters:
      cause - the cause of the exception.
      message - the detail message.
      args - the arguments to the message.