advanced-command-handler
Version:
A package to help you create a bot with only 1 main file, directories for your events/commands, with some helpers classes and functions.
17 lines (16 loc) • 412 B
TypeScript
export declare class CommandHandlerError extends Error {
/**
* When the error occurred.
*/
readonly date: Date;
/**
* Where the error occurred.
*/
readonly where: string;
/**
*
* @param message - The error message to explain what happens.
* @param where - Where the error occurred.
*/
constructor(message: string, where: string);
}