Exception: Kwalify::ValidationError

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) ⇒ ValidationError

Returns a new instance of ValidationError.



61
62
63
# File 'lib/kwalify/errors.rb', line 61

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