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.0
Version:
2022-09-01
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
    • InternalErrorException

      public InternalErrorException(Throwable cause)
      Constructs a new "internal error" exception with the specified cause.
      Parameters:
      cause - the exception that caused this exception
    • 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