java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.xnio.http.UpgradeFailedException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionClosedEarlyException
Exception that is thrown when a valid HTTP response is
received that is not an upgrade or redirect response.
- Author:
- Stuart Douglas
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newUpgradeFailedException
instance.Constructs a newUpgradeFailedException
instance with an initial message.UpgradeFailedException
(String msg, Throwable cause) Constructs a newUpgradeFailedException
instance with an initial message and cause.UpgradeFailedException
(Throwable cause) Constructs a newUpgradeFailedException
instance with an initial cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UpgradeFailedException
public UpgradeFailedException()Constructs a newUpgradeFailedException
instance. The message is left blank (null
), and no cause is specified. -
UpgradeFailedException
Constructs a newUpgradeFailedException
instance with an initial message. No cause is specified.- Parameters:
msg
- the message
-
UpgradeFailedException
Constructs a newUpgradeFailedException
instance with an initial cause. If a non-null
cause is specified, its message is used to initialize the message of thisUpgradeFailedException
; otherwise the message is left blank (null
).- Parameters:
cause
- the cause
-
UpgradeFailedException
Constructs a newUpgradeFailedException
instance with an initial message and cause.- Parameters:
msg
- the messagecause
- the cause
-