discord-bot-cli
Version:
An easy way to build a command-based discord bot with discord.js.
14 lines (13 loc) • 541 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommandResultError = void 0;
/** @internal */
class CommandResultError extends Error {
constructor(commandResult, replyMessage) {
super("This error is used internally by discord-bot-cli. It must not been shown in the console. If it's the case, it's a bug.");
this.commandResult = commandResult;
this.replyMessage = replyMessage;
this.name = "CommandResultError";
}
}
exports.CommandResultError = CommandResultError;