Class WebSocketHandshakeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.net.http.WebSocketHandshakeException
- All Implemented Interfaces:
Serializable
Thrown when the opening handshake has failed.
- Since:
- 11
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWebSocketHandshakeException(HttpResponse<?> response) Constructs aWebSocketHandshakeExceptionwith the givenHttpResponse. -
Method Summary
Modifier and TypeMethodDescriptionHttpResponse<?> Returns the server's counterpart of the opening handshake.Initializes the cause of this throwable to the specified value.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringModifier and TypeMethodDescriptionfinal voidaddSuppressed(Throwable exception) Appends the specified exception to the exceptions that were suppressed in order to deliver this exception.Fills in the execution stack trace.getCause()Returns the cause of this throwable ornullif the cause is nonexistent or unknown.Creates a localized description of this throwable.Returns the detail message string of this throwable.Provides programmatic access to the stack trace information printed byThrowable.printStackTrace().final Throwable[]Returns an array containing all of the exceptions that were suppressed, typically by thetry-with-resources statement, in order to deliver this exception.voidPrints this throwable and its backtrace to the standard error stream.voidPrints this throwable and its backtrace to the specified print stream.voidPrints this throwable and its backtrace to the specified print writer.voidsetStackTrace(StackTraceElement[] stackTrace) Sets the stack trace elements that will be returned byThrowable.getStackTrace()and printed byThrowable.printStackTrace()and related methods.toString()Returns a short description of this throwable.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
WebSocketHandshakeException
Constructs aWebSocketHandshakeExceptionwith the givenHttpResponse.- Parameters:
response- theHttpResponsethat resulted in the handshake failure
-
-
Method Details
-
getResponse
Returns the server's counterpart of the opening handshake.The value may be unavailable (
null) if this exception has been serialized and then deserialized.- API Note:
- The primary purpose of this method is to allow programmatic examination of the reasons behind the failure of the opening handshake. Some of these reasons might allow recovery.
- Returns:
- server response
-
initCause
Description copied from class:ThrowableInitializes the cause of this throwable to the specified value. (The cause is the throwable that caused this throwable to get thrown.)This method can be called at most once. It is generally called from within the constructor, or immediately after creating the throwable. If this throwable was created with
Throwable(Throwable)orThrowable(String,Throwable), this method cannot be called even once.An example of using this method on a legacy throwable type without other support for setting the cause is:
try { lowLevelOp(); } catch (LowLevelException le) { throw (HighLevelException) new HighLevelException().initCause(le); // Legacy constructor }- Overrides:
initCausein classThrowable- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)- Returns:
- a reference to this
Throwableinstance.
-