@debugmcp/mcp-debugger
Version:
Run-time step-through debugging for LLM agents.
12 lines • 338 B
JavaScript
/**
* Error thrown when a command cannot be found in the system PATH
*/
export class CommandNotFoundError extends Error {
command;
constructor(command) {
super(`Command not found: ${command}`);
this.command = command;
this.name = 'CommandNotFoundError';
}
}
//# sourceMappingURL=command-finder.js.map