UNPKG

discord-bot-cli

Version:

An easy way to build a command-based discord bot with discord.js.

12 lines (11 loc) 318 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CommandLoadError = void 0; /** @category Error */ class CommandLoadError extends Error { constructor(message) { super(message); this.name = "CommandLoadError"; } } exports.CommandLoadError = CommandLoadError;