UNPKG

fnbr

Version:

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

14 lines 535 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents an error thrown because the client does not have permission to perform a certain action */ class PartyInvitationExpiredError extends Error { constructor() { super(); this.name = 'PartyInvitationExpiredError'; this.message = 'The party invitation expired or already got accepted / declined / aborted'; } } exports.default = PartyInvitationExpiredError; //# sourceMappingURL=PartyInvitationExpiredError.js.map