(message: string, options?: ErrorOptions)
| 12 | |
| 13 | export class UsageError extends CliError { |
| 14 | constructor(message: string, options?: ErrorOptions) { |
| 15 | super(message, 2, options); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | export class OperationError extends CliError { |
nothing calls this directly
no outgoing calls
no test coverage detected