Class HttpException.ForbiddenException

All Implemented Interfaces:
Serializable
Enclosing class:
HttpException

public static final class HttpException.ForbiddenException extends HttpException
Exception that causes a 403 response.
See Also:
  • Constructor Details

    • ForbiddenException

      public ForbiddenException(String message)
    • ForbiddenException

      public ForbiddenException(String message, Exception cause)
  • Method Details

    • getResponseCodeString

      public String getResponseCodeString()
      Description copied from class: HttpException
      Returns the string associated with a particular response code. Unlike Throwable.getMessage(), which is meant to describe the circumstances under which this particular exception occurred, this method always returns the same string (e.g. "Not Found" for a 400 error), and so should always be the same for a given subclass of HttpException.
      Overrides:
      getResponseCodeString in class HttpException