| 30 | |
| 31 | // Custom error for testing non-retryable conditions |
| 32 | class NonRetryableError extends Error { |
| 33 | constructor(message: string) { |
| 34 | super(message); |
| 35 | this.name = 'NonRetryableError'; |
nothing calls this directly
no outgoing calls
no test coverage detected