Exception: Dry::CLI::UnknownCommandError
- Defined in:
- lib/dry/cli/errors.rb
Overview
Instance Method Summary collapse
-
#initialize(command_name) ⇒ UnknownCommandError
constructor
private
A new instance of UnknownCommandError.
Constructor Details
#initialize(command_name) ⇒ UnknownCommandError
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of UnknownCommandError.
16 17 18 |
# File 'lib/dry/cli/errors.rb', line 16 def initialize(command_name) super("unknown command: `#{command_name}'") end |