Class InternalErrorException

All Implemented Interfaces:
Serializable

public class InternalErrorException extends RequestException
Exception thrown when the web request unexpectedly fails.

The HTTP status for this exception is 500 INTERNAL_SERVER_ERROR.

Since:
1
Version:
1
See Also:
  • Constructor Details

    • InternalErrorException

      public InternalErrorException(String message)
      Constructs a new "internal error" exception with the specified message.
      Parameters:
      message - the detailed error message
      Since:
      1
    • InternalErrorException

      public InternalErrorException(Throwable cause)
      Constructs a new "internal error" exception with the specified cause.
      Parameters:
      cause - the exception that caused this exception
      Since:
      1
    • InternalErrorException

      public InternalErrorException(String message, Throwable cause)
      Constructs a new "internal error" exception with the specified message and cause.
      Parameters:
      message - the detailed error message
      cause - the exception that caused this exception
      Since:
      1