Exception: RobotLab::To::CommitFailedError
- Defined in:
- lib/robot_lab/to/errors.rb
Overview
git commit failed. Preserves uncommitted changes so the next iteration can repair them.
Instance Attribute Summary collapse
-
#output ⇒ Object
readonly
Returns the value of attribute output.
Instance Method Summary collapse
-
#initialize(msg, output: nil) ⇒ CommitFailedError
constructor
A new instance of CommitFailedError.
Constructor Details
#initialize(msg, output: nil) ⇒ CommitFailedError
Returns a new instance of CommitFailedError.
14 15 16 17 |
# File 'lib/robot_lab/to/errors.rb', line 14 def initialize(msg, output: nil) super(msg) @output = output end |
Instance Attribute Details
#output ⇒ Object (readonly)
Returns the value of attribute output.
12 13 14 |
# File 'lib/robot_lab/to/errors.rb', line 12 def output @output end |