Method: GLI::CommandException#initialize

Defined in:
lib/gli/exceptions.rb

#initialize(message, command_in_context, exit_code = nil) ⇒ CommandException

message

the error message to show the user

command

the command we were using to parse command-specific options



31
32
33
34
35
# File 'lib/gli/exceptions.rb', line 31

def initialize(message,command_in_context,exit_code=nil)
  super(message)
  @command_in_context = command_in_context
  @exit_code = exit_code
end