Exception: Sequel::ValidationFailed
Overview
Exception class raised when raise_on_save_failure is set and validation fails
Constant Summary
Constant Summary
Constants inherited from Error
Error::AdapterNotFound, Error::InvalidOperation, Error::InvalidValue, Error::PoolTimeoutError, Error::Rollback
Instance Attribute Summary (collapse)
-
- (Object) errors
readonly
Returns the value of attribute errors.
Attributes inherited from Error
Instance Method Summary (collapse)
-
- (ValidationFailed) initialize(errors)
constructor
A new instance of ValidationFailed.
Constructor Details
- (ValidationFailed) initialize(errors)
A new instance of ValidationFailed
18 19 20 21 22 23 24 25 |
# File 'lib/sequel/model/exceptions.rb', line 18 def initialize(errors) if errors.respond_to?(:full_messages) @errors = errors super(errors..join(', ')) else super end end |
Instance Attribute Details
- (Object) errors (readonly)
Returns the value of attribute errors
26 27 28 |
# File 'lib/sequel/model/exceptions.rb', line 26 def errors @errors end |