UNPKG

corde

Version:

A simple library for Discord bot tests

18 lines (13 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true, }); exports.ConfigError = void 0; const defaults_1 = require("./defaults"); class ConfigError extends Error { constructor(message = defaults_1.Errors.CONFIG_ERROR_MESSAGE) { super(message); this.name = defaults_1.Errors.CONFIG_ERROR; } } exports.ConfigError = ConfigError;