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