Klasse HttpUnauthorizedException

Alle implementierten Schnittstellen:
Serializable

@ResponseStatus(UNAUTHORIZED) public final class HttpUnauthorizedException extends HttpClientErrorException
This exception corresponds to the HTTP 401 status code.
Siehe auch:
  • Konstruktordetails

    • HttpUnauthorizedException

      public HttpUnauthorizedException()
      Create a HTTP exception with the status code 401 Bad Request.
    • HttpUnauthorizedException

      public HttpUnauthorizedException(String p_strMessage)
      Create a HTTP exception with the status code 401 Unauthorized.
      Parameter:
      p_strMessage - An error message that can be later retrieved by the Throwable.getMessage() method.
    • HttpUnauthorizedException

      public HttpUnauthorizedException(Throwable p_cause)
      Create a HTTP exception with the status code 401 Unauthorized.
      Parameter:
      p_cause - The cause that can be later retrieved by the Throwable.getCause() method.
    • HttpUnauthorizedException

      public HttpUnauthorizedException(String p_strMessage, Throwable p_cause)
      Create a HTTP exception with the status code 401 Unauthorized.
      Parameter:
      p_strMessage - An error message that can be later retrieved by the Throwable.getMessage() method.
      p_cause - The cause that can be later retrieved by the Throwable.getCause() method.
  • Methodendetails

    • getStatus

      public int getStatus()
      Beschreibung aus Klasse kopiert: HttpErrorException
      Get the HTTP status associated with this error.
      Setzt außer Kraft:
      getStatus in Klasse HttpErrorException
      Gibt zurück:
      The HTTP status code 401 Unauthorized.