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