Exception: SuperDiff::Core::NoOperationTreeBuilderAvailableError
- Inherits:
-
StandardError
- Object
- StandardError
- SuperDiff::Core::NoOperationTreeBuilderAvailableError
- Defined in:
- lib/super_diff/core/no_operation_tree_builder_available_error.rb
Instance Attribute Summary collapse
-
#actual ⇒ Object
Returns the value of attribute actual.
-
#expected ⇒ Object
Returns the value of attribute expected.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ NoOperationTreeBuilderAvailableError
constructor
A new instance of NoOperationTreeBuilderAvailableError.
Constructor Details
#initialize ⇒ NoOperationTreeBuilderAvailableError
Returns a new instance of NoOperationTreeBuilderAvailableError.
16 17 18 19 20 21 22 23 |
# File 'lib/super_diff/core/no_operation_tree_builder_available_error.rb', line 16 def initialize super(<<~MESSAGE) There is no operation tree builder available to handle an "expected" value of type #{expected.class} and an "actual" value of type #{actual.class}. MESSAGE end |
Instance Attribute Details
#actual ⇒ Object
Returns the value of attribute actual.
14 15 16 |
# File 'lib/super_diff/core/no_operation_tree_builder_available_error.rb', line 14 def actual @actual end |
#expected ⇒ Object
Returns the value of attribute expected.
14 15 16 |
# File 'lib/super_diff/core/no_operation_tree_builder_available_error.rb', line 14 def expected @expected end |
Class Method Details
.create(expected, actual) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/super_diff/core/no_operation_tree_builder_available_error.rb', line 6 def self.create(expected, actual) allocate.tap do |error| error.expected = expected error.actual = actual error.__send__(:initialize) end end |