fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
14 lines • 649 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an error thrown because you tried to send a party chat message, but there is no chat yet, because you are the only person in the party
*/
class PartyChatConversationNotFoundError extends Error {
constructor() {
super();
this.name = 'PartyChatConversationNotFoundError';
this.message = 'There is no party chat conversation yet. You cannot send party chat messages when you are the only party member.';
}
}
exports.default = PartyChatConversationNotFoundError;
//# sourceMappingURL=PartyChatConversationNotFoundError.js.map