(message: string)
| 2 | |
| 3 | export class ClaudeError extends Error { |
| 4 | constructor(message: string) { |
| 5 | super(message) |
| 6 | this.name = this.constructor.name |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | export class MalformedCommandError extends Error {} |
nothing calls this directly
no outgoing calls
no test coverage detected