fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
14 lines • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an error thrown because a party does not exist
*/
class PartyNotFoundError extends Error {
constructor() {
super();
this.name = 'PartyNotFoundError';
this.message = 'The party wasn\'t found';
}
}
exports.default = PartyNotFoundError;
//# sourceMappingURL=PartyNotFoundError.js.map