Exception: Trollop::CommandlineError
- Inherits:
-
StandardError
- Object
- StandardError
- Trollop::CommandlineError
- Defined in:
- lib/trollop.rb
Overview
Thrown by Parser in the event of a commandline error. Not needed if you’re using the Trollop::options entry.
Instance Attribute Summary collapse
-
#error_code ⇒ Object
readonly
Returns the value of attribute error_code.
Instance Method Summary collapse
-
#initialize(msg, error_code = nil) ⇒ CommandlineError
constructor
A new instance of CommandlineError.
Constructor Details
#initialize(msg, error_code = nil) ⇒ CommandlineError
Returns a new instance of CommandlineError.
18 19 20 21 |
# File 'lib/trollop.rb', line 18 def initialize(msg, error_code = nil) super(msg) @error_code = error_code end |
Instance Attribute Details
#error_code ⇒ Object (readonly)
Returns the value of attribute error_code.
16 17 18 |
# File 'lib/trollop.rb', line 16 def error_code @error_code end |