Class SockJsTransportFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.web.socket.sockjs.SockJsException
org.springframework.web.socket.sockjs.SockJsTransportFailureException
- All Implemented Interfaces:
- Serializable
Indicates a serious failure that occurred in the SockJS implementation as opposed to
 in user code (e.g. IOException while writing to the response). When this exception
 is raised, the SockJS session is typically closed.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionSockJsTransportFailureException(String message, String sessionId, Throwable cause) Constructor for SockJsTransportFailureException.SockJsTransportFailureException(String message, Throwable cause) Constructor for SockJsTransportFailureException.
- 
Method SummaryMethods inherited from class org.springframework.web.socket.sockjs.SockJsExceptiongetSockJsSessionIdMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
SockJsTransportFailureExceptionConstructor for SockJsTransportFailureException.- Parameters:
- message- the exception message
- cause- the root cause
- Since:
- 4.1.7
 
- 
SockJsTransportFailureExceptionConstructor for SockJsTransportFailureException.- Parameters:
- message- the exception message
- sessionId- the SockJS session id
- cause- the root cause
 
 
-