Exception: Kwalify::ValidationError
- Inherits:
-
BaseError
- Object
- StandardError
- KwalifyError
- BaseError
- Kwalify::ValidationError
- Defined in:
- lib/kwalify/errors.rb
Instance Attribute Summary
Attributes inherited from BaseError
#column, #error_symbol, #filename, #linenum, #path, #rule, #value
Instance Method Summary collapse
-
#initialize(message = "", path = nil, rule = nil, value = nil, error_symbol = nil) ⇒ ValidationError
constructor
A new instance of ValidationError.
Methods inherited from BaseError
Constructor Details
#initialize(message = "", path = nil, rule = nil, value = nil, error_symbol = nil) ⇒ ValidationError
Returns a new instance of ValidationError.
68 69 70 |
# File 'lib/kwalify/errors.rb', line 68 def initialize(="", path=nil, rule=nil, value=nil, error_symbol=nil) super(, path, rule, value, error_symbol) end |