fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
18 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents an error thrown because a creator code does not exist
*/
class CreatorCodeNotFoundError extends Error {
/**
* @param query The query which resulted in this error
*/
constructor(query) {
super();
this.name = 'CreatorCodeNotFoundError';
this.message = `The Support-A-Creator code "${query}" does not exist`;
this.query = query;
}
}
exports.default = CreatorCodeNotFoundError;
//# sourceMappingURL=CreatorCodeNotFoundError.js.map