| 33 | |
| 34 | /** Error to be thrown when a function or method is called in dryRun mode and shouldn't be. */ |
| 35 | export class DryRunError extends Error { |
| 36 | constructor() { |
| 37 | super('Cannot call this function in dryRun mode.'); |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected