(public vendor: string)
| 25 | /** Rate limited — router skips to the next vendor in the chain. */ |
| 26 | export class VendorRateLimitError extends VendorError { |
| 27 | constructor(public vendor: string) { |
| 28 | super(`[${vendor}] rate limited`); |
| 29 | this.name = "VendorRateLimitError"; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /** Missing API key / config (also a configuration error). */ |
nothing calls this directly
no outgoing calls
no test coverage detected