Exception: Hana::Patch::FailedTestException
- Defined in:
- lib/hana.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(path, value) ⇒ FailedTestException
constructor
A new instance of FailedTestException.
Constructor Details
#initialize(path, value) ⇒ FailedTestException
Returns a new instance of FailedTestException.
63 64 65 66 67 |
# File 'lib/hana.rb', line 63 def initialize path, value super "expected #{value} at #{path}" @path = path @value = value end |
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path.
61 62 63 |
# File 'lib/hana.rb', line 61 def path @path end |
#value ⇒ Object
Returns the value of attribute value.
61 62 63 |
# File 'lib/hana.rb', line 61 def value @value end |