Class: JsonSchema::ValidationError

Inherits:
SchemaError show all
Defined in:
lib/json_schema/schema_error.rb

Instance Attribute Summary collapse

Attributes inherited from SchemaError

#message, #schema, #type

Instance Method Summary collapse

Methods inherited from SchemaError

aggregate

Constructor Details

#initialize(schema, path, message, type, sub_errors = nil) ⇒ ValidationError

Returns a new instance of ValidationError.



23
24
25
26
27
# File 'lib/json_schema/schema_error.rb', line 23

def initialize(schema, path, message, type, sub_errors = nil)
  super(schema, message, type)
  @path = path
  @sub_errors = sub_errors
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



21
22
23
# File 'lib/json_schema/schema_error.rb', line 21

def path
  @path
end

#sub_errorsObject

Returns the value of attribute sub_errors.



21
22
23
# File 'lib/json_schema/schema_error.rb', line 21

def sub_errors
  @sub_errors
end

Instance Method Details

#pointerObject



29
30
31
# File 'lib/json_schema/schema_error.rb', line 29

def pointer
  path.join("/")
end

#to_sObject



33
34
35
# File 'lib/json_schema/schema_error.rb', line 33

def to_s
  "#{pointer}: failed schema #{schema.pointer}: #{message}"
end