Class InvalidResponseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.client.InvalidResponseException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidHttpResponseException, InvalidResponseHeadersException, WebSocketClientHandshakeException

public class InvalidResponseException extends RuntimeException
A RuntimeException raised when a client received an invalid response.
See Also:
  • Constructor Details

    • InvalidResponseException

      public InvalidResponseException()
      Creates a new instance.
    • InvalidResponseException

      public InvalidResponseException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Creates a new instance with the specified message and cause.
    • InvalidResponseException

      public InvalidResponseException(@Nullable @Nullable String message)
      Creates a new instance with the specified message.
    • InvalidResponseException

      public InvalidResponseException(@Nullable @Nullable Throwable cause)
      Creates a new instance with the specified cause.
    • InvalidResponseException

      protected InvalidResponseException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates a new instance with the specified message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.