corde
Version:
A simple library for Discord bot tests
13 lines (12 loc) • 371 B
TypeScript
/**
* Related to a Corde client error.
* @see Discord.Client https://discord.js.org/#/docs/main/stable/class/Client
*/
export declare class CordeClientError extends Error {
/**
* Throws when the management of some kind of data related to the Discord.Client
* is found.
* @param message Custom message to this error.
*/
constructor(message?: string);
}