just-bash-mcp / src /utils /errors.ts
victor's picture
victor HF Staff
Initial deploy of just-bash MCP server
548a458 verified
raw
history blame contribute delete
386 Bytes
export type ToolErrorCode =
| "UNKNOWN_SESSION"
| "INVALID_INPUT"
| "QUOTA_EXCEEDED"
| "RATE_LIMITED"
| "HARD_TIMEOUT"
| "SESSION_INVALID"
| "INTERNAL"
| "NOT_FOUND";
export class ToolError extends Error {
readonly code: ToolErrorCode;
constructor(code: ToolErrorCode, message: string) {
super(message);
this.code = code;
this.name = "ToolError";
}
}