| 10 | export class MalformedCommandError extends Error {} |
| 11 | |
| 12 | export class AbortError extends Error { |
| 13 | constructor(message?: string) { |
| 14 | super(message) |
| 15 | this.name = 'AbortError' |
nothing calls this directly
no outgoing calls
no test coverage detected