Exception: Kwalify::SchemaError

Inherits:
BaseError show all
Defined in:
lib/kwalify/errors.rb

Instance Attribute Summary

Attributes inherited from BaseError

#error_symbol, #linenum, #path, #rule, #value

Instance Method Summary collapse

Methods inherited from BaseError

#_to_s, #message, #to_s

Constructor Details

#initialize(message = "", path = nil, rule = nil, value = nil, error_symbol = nil) ⇒ SchemaError

Returns a new instance of SchemaError.



50
51
52
# File 'lib/kwalify/errors.rb', line 50

def initialize(message="", path=nil, rule=nil, value=nil, error_symbol=nil)
   super(message, path, rule, value, error_symbol)
end