MCPcopy Index your code
hub / github.com/evalops/deep-code-reasoning-mcp / ClassifiedError

Interface ClassifiedError

src/utils/ErrorClassifier.ts:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { SessionError, ApiError, FileSystemError, RateLimitError } from '../errors/index.js';
6
7export interface ClassifiedError {
8 category: 'session' | 'api' | 'filesystem' | 'unknown';
9 code?: string;
10 description: string;
11 isRetryable: boolean;
12}
13
14export class ErrorClassifier {
15 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected