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