Class HttpInternalServerErrorException

All Implemented Interfaces:
Serializable

public final class HttpInternalServerErrorException extends HttpServerErrorException
See Also:
  • Constructor Details

    • HttpInternalServerErrorException

      public HttpInternalServerErrorException()
      Create a HTTP exception with the status code 500 Internal Server Error.
    • HttpInternalServerErrorException

      public HttpInternalServerErrorException(String p_strMessage)
      Create a HTTP exception with the status code 500 Internal Server Error.
      Parameters:
      p_strMessage - An error message that can be later retrieved by the Throwable.getMessage() method.
    • HttpInternalServerErrorException

      public HttpInternalServerErrorException(Throwable p_cause)
      Create a HTTP exception with the status code 500 Internal Server Error.
      Parameters:
      p_cause - The cause that can be later retrieved by the Throwable.getCause() method.
    • HttpInternalServerErrorException

      public HttpInternalServerErrorException(String p_strMessage, Throwable p_cause)
      Create a HTTP exception with the status code 500 Internal Server Error.
      Parameters:
      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.
  • Method Details

    • getStatus

      public int getStatus()
      Description copied from class: HttpErrorException
      Get the HTTP status associated with this error.
      Overrides:
      getStatus in class HttpErrorException
      Returns:
      The HTTP status code 500 Internal Server Error.