(message: string, options?: ErrorOptions)
| 18 | |
| 19 | export class OperationError extends CliError { |
| 20 | constructor(message: string, options?: ErrorOptions) { |
| 21 | super(message, 1, options); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | export class SilentCliError extends CliError { |
nothing calls this directly
no outgoing calls
no test coverage detected