UNPKG

fnbr

Version:

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

14 lines 482 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents an error thrown because a member (or the client) already joined a party */ class PartyAlreadyJoinedError extends Error { constructor() { super(); this.name = 'PartyAlreadyJoinedError'; this.message = 'The member (or the client) already joined this party'; } } exports.default = PartyAlreadyJoinedError; //# sourceMappingURL=PartyAlreadyJoinedError.js.map