org.frameworkset.web.socket.sockjs.SockJsTransportFailureException Maven / Gradle / Ivy
package org.frameworkset.web.socket.sockjs;
public class SockJsTransportFailureException extends SockJsException {
/**
* Constructor for SockJsTransportFailureException.
* @param message the exception message
* @param cause the root cause
* @since 4.1.7
*/
public SockJsTransportFailureException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructor for SockJsTransportFailureException.
* @param message the exception message
* @param sessionId the SockJS session id
* @param cause the root cause
*/
public SockJsTransportFailureException(String message, String sessionId, Throwable cause) {
super(message, sessionId, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy