Class RequestNotFoundException

All Implemented Interfaces:
Serializable

public class RequestNotFoundException extends NotFoundException
Exception that indicates the request is not found in the system.
See Also:
  • Constructor Details

    • RequestNotFoundException

      public RequestNotFoundException()
      Constructor.
    • RequestNotFoundException

      public RequestNotFoundException(String msg)
      Constructor with a detailed message.
      Parameters:
      msg - the associated detailed message
    • RequestNotFoundException

      public RequestNotFoundException(String msg, long requestId)
      Constructor with a detailed message.
      Parameters:
      msg - the associated detailed message
      requestId - the request ID that is not in the system
    • RequestNotFoundException

      public RequestNotFoundException(Throwable cause)
      Constructor with the underlying cause.
      Parameters:
      cause - the underlying cause for exception.
    • RequestNotFoundException

      public RequestNotFoundException(Throwable cause, long requestId)
      Constructor with the underlying cause.
      Parameters:
      cause - the underlying cause for exception.
      requestId - the request ID that is not in the system
    • RequestNotFoundException

      public RequestNotFoundException(String msg, Throwable cause)
      Constructor with a detailed message and underlying cause.
      Parameters:
      msg - the detailed message for the exception.
      cause - the underlying cause for the exception.
    • RequestNotFoundException

      public RequestNotFoundException(String msg, Throwable cause, long requestId)
      Constructor with a detailed message and underlying cause.
      Parameters:
      msg - the detailed message for the exception.
      cause - the underlying cause for the exception.
      requestId - the request ID that is not in the system
  • Method Details

    • getRequestId

      public Long getRequestId()
      Retrieve the request ID associated with this object.
      Returns:
      the request ID, or null if none