/** * Represents an error that is thrown when the stomp websocket connection fails to be established */ declare class STOMPConnectionError extends Error { /** * The error status code */ statusCode?: number; /** * @param error The error that caused the connection to fail */ constructor(message: string, statusCode?: number); } export default STOMPConnectionError;