class Dry::CLI::UnknownCommandError

@since 0.2.1

Public Class Methods

new(command_name) click to toggle source

@since 0.2.1 @api private

Calls superclass method
# File lib/dry/cli/errors.rb, line 16
def initialize(command_name)
  super("unknown command: `#{command_name}'")
end