Exception: Optimist::CommandlineError

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

Overview

Thrown by Parser in the event of a commandline error. Not needed if you’re using the Optimist::options entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, error_code = nil) ⇒ CommandlineError

Returns a new instance of CommandlineError.



16
17
18
19
# File 'lib/optimist.rb', line 16

def initialize(msg, error_code = nil)
  super(msg)
  @error_code = error_code
end

Instance Attribute Details

#error_codeObject (readonly)

Returns the value of attribute error_code.



14
15
16
# File 'lib/optimist.rb', line 14

def error_code
  @error_code
end