UNPKG

fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

12 lines 461 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class STOMPConnectionTimeoutError extends Error { constructor(timeoutMs) { super(); this.name = 'STOMPConnectionTimeoutError'; this.message = `The STOMP connection timeout of ${timeoutMs}ms has been exceeded`; this.timeoutMs = timeoutMs; } } exports.default = STOMPConnectionTimeoutError; //# sourceMappingURL=STOMPConnectionTimeoutError.js.map