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); }