Exception: Elzar::Cli::MissingArgumentsError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/elzar/cli.rb

Instance Method Summary collapse

Constructor Details

#initialize(cmd, arguments) ⇒ MissingArgumentsError

Returns a new instance of MissingArgumentsError.



7
8
9
10
# File 'lib/elzar/cli.rb', line 7

def initialize(cmd, arguments)
  super "Required arguments missing (#{arguments.join(', ')})." \
    " Run `elzar help #{cmd}` for more information."
end