UNPKG

fnbr

Version:

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

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