ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
11 lines • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamDestroyedException = void 0;
class StreamDestroyedException extends Error {
constructor() {
super('Stream destroyed before connection could be made');
this.name = StreamDestroyedException.name;
}
}
exports.StreamDestroyedException = StreamDestroyedException;
//# sourceMappingURL=stream-destroyed.exception.js.map