(message: string)
| 5 | */ |
| 6 | export class VendorError extends Error { |
| 7 | constructor(message: string) { |
| 8 | super(message); |
| 9 | this.name = "VendorError"; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | /** No usable rows (empty result OR stale data). */ |
nothing calls this directly
no outgoing calls
no test coverage detected