fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines (14 loc) • 402 B
TypeScript
/**
* 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;