UNPKG

corde

Version:

A simple library for Discord bot tests

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