Exception: Braid::Operations::MergeError
- Inherits:
-
BraidError
- Object
- StandardError
- BraidError
- Braid::Operations::MergeError
- Defined in:
- lib/braid/operations.rb
Instance Attribute Summary collapse
-
#conflicts_text ⇒ Object
readonly
Returns the value of attribute conflicts_text.
Instance Method Summary collapse
-
#initialize(conflicts_text) ⇒ MergeError
constructor
A new instance of MergeError.
- #message ⇒ Object
Methods included from T::Sig
Constructor Details
#initialize(conflicts_text) ⇒ MergeError
Returns a new instance of MergeError.
58 59 60 |
# File 'lib/braid/operations.rb', line 58 def initialize(conflicts_text) @conflicts_text = conflicts_text end |
Instance Attribute Details
#conflicts_text ⇒ Object (readonly)
Returns the value of attribute conflicts_text.
55 56 57 |
# File 'lib/braid/operations.rb', line 55 def conflicts_text @conflicts_text end |
Instance Method Details
#message ⇒ Object
63 64 65 |
# File 'lib/braid/operations.rb', line 63 def 'could not merge' end |