| 1 | // base object being wrapped is normal Error |
| 2 | |
| 3 | export default class VariableArgumentError extends Error { |
| 4 | constructor(readonly template: string, ...args: unknown[]) { |
| 5 | super(format(template, ...args)); |
| 6 | } |
nothing calls this directly
no outgoing calls
no test coverage detected