fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
18 lines • 646 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an error thrown because the friendship invitee reached their friendships limit
*/
class InviteeFriendshipsLimitExceededError extends Error {
/**
* @param query The query which resulted in this error
*/
constructor(query) {
super();
this.name = 'InviteeFriendshipsLimitExceededError';
this.message = `The user ${query} reached their friendships limit`;
this.query = query;
}
}
exports.default = InviteeFriendshipsLimitExceededError;
//# sourceMappingURL=InviteeFriendshipsLimitExceededError.js.map