类 SockJsTransportFailureException

  • 所有已实现的接口:
    Serializable

    public class SockJsTransportFailureException
    extends SockJsException
    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.
    从以下版本开始:
    4.0
    作者:
    Rossen Stoyanchev
    另请参阅:
    序列化表格
    • 构造器详细资料

      • SockJsTransportFailureException

        public SockJsTransportFailureException​(String message,
                                               Throwable cause)
        Constructor for SockJsTransportFailureException.
        参数:
        message - the exception message
        cause - the root cause
        从以下版本开始:
        4.1.7
      • SockJsTransportFailureException

        public SockJsTransportFailureException​(String message,
                                               String sessionId,
                                               Throwable cause)
        Constructor for SockJsTransportFailureException.
        参数:
        message - the exception message
        sessionId - the SockJS session id
        cause - the root cause