Exception: Ace::Support::Cli::HelpRendered
- Inherits:
-
StandardError
- Object
- StandardError
- Ace::Support::Cli::HelpRendered
- Defined in:
- lib/ace/support/cli/errors.rb
Instance Attribute Summary collapse
-
#output ⇒ Object
readonly
Returns the value of attribute output.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(output, status: 0) ⇒ HelpRendered
constructor
A new instance of HelpRendered.
Constructor Details
#initialize(output, status: 0) ⇒ HelpRendered
Returns a new instance of HelpRendered.
12 13 14 15 16 |
# File 'lib/ace/support/cli/errors.rb', line 12 def initialize(output, status: 0) @output = output @status = status super("Help rendered") end |
Instance Attribute Details
#output ⇒ Object (readonly)
Returns the value of attribute output.
10 11 12 |
# File 'lib/ace/support/cli/errors.rb', line 10 def output @output end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
10 11 12 |
# File 'lib/ace/support/cli/errors.rb', line 10 def status @status end |