Exception: JsonSpec::MissingPathError
- Inherits:
-
StandardError
- Object
- StandardError
- JsonSpec::MissingPathError
- Defined in:
- lib/json_spec/errors.rb
Instance Attribute Summary (collapse)
-
- (Object) path
readonly
Returns the value of attribute path.
Instance Method Summary (collapse)
-
- (MissingPathError) initialize(path)
constructor
A new instance of MissingPathError.
- - (Object) to_s
Constructor Details
- (MissingPathError) initialize(path)
A new instance of MissingPathError
5 6 7 |
# File 'lib/json_spec/errors.rb', line 5 def initialize(path) @path = path end |
Instance Attribute Details
- (Object) path (readonly)
Returns the value of attribute path
3 4 5 |
# File 'lib/json_spec/errors.rb', line 3 def path @path end |
Instance Method Details
- (Object) to_s
9 10 11 |
# File 'lib/json_spec/errors.rb', line 9 def to_s %(Missing JSON path "#{path}") end |