Exception: Acter::HelpWanted
- Inherits:
-
InvalidCommand
- Object
- StandardError
- Error
- InvalidCommand
- Acter::HelpWanted
- Defined in:
- lib/acter/error.rb
Instance Attribute Summary
Attributes inherited from InvalidCommand
#action, #params, #schema, #subject
Instance Method Summary collapse
-
#initialize(action, subject, schema) ⇒ HelpWanted
constructor
A new instance of HelpWanted.
- #to_s ⇒ Object
Constructor Details
#initialize(action, subject, schema) ⇒ HelpWanted
Returns a new instance of HelpWanted.
84 85 86 |
# File 'lib/acter/error.rb', line 84 def initialize(action, subject, schema) super(schema, subject, action) end |
Instance Method Details
#to_s ⇒ Object
87 88 89 |
# File 'lib/acter/error.rb', line 87 def to_s "Command-line help" end |