| 32 | |
| 33 | /** Missing API key / config (also a configuration error). */ |
| 34 | export class VendorNotConfiguredError extends VendorError { |
| 35 | constructor(public vendor: string) { |
| 36 | super(`[${vendor}] not configured (missing API key)`); |
| 37 | this.name = "VendorNotConfiguredError"; |
nothing calls this directly
no outgoing calls
no test coverage detected