| 24 | |
| 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"; |
nothing calls this directly
no outgoing calls
no test coverage detected