Class: JsonSchema::ValidationError
- Inherits:
-
SchemaError
- Object
- SchemaError
- JsonSchema::ValidationError
- Defined in:
- lib/json_schema/schema_error.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
Attributes inherited from SchemaError
Instance Method Summary collapse
-
#initialize(schema, path, message) ⇒ ValidationError
constructor
A new instance of ValidationError.
- #pointer ⇒ Object
- #to_s ⇒ Object
Methods inherited from SchemaError
Constructor Details
#initialize(schema, path, message) ⇒ ValidationError
Returns a new instance of ValidationError.
23 24 25 26 |
# File 'lib/json_schema/schema_error.rb', line 23 def initialize(schema, path, ) super(schema, ) @path = path end |
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path.
21 22 23 |
# File 'lib/json_schema/schema_error.rb', line 21 def path @path end |
Instance Method Details
#pointer ⇒ Object
28 29 30 |
# File 'lib/json_schema/schema_error.rb', line 28 def pointer path.join("/") end |
#to_s ⇒ Object
32 33 34 |
# File 'lib/json_schema/schema_error.rb', line 32 def to_s "#{pointer}: failed schema #{schema.pointer}: #{message}" end |