Exception: Sequel::ValidationFailed
- Defined in:
- lib/sequel/model/exceptions.rb
Overview
Exception class raised when raise_on_save_failure
is set and validation fails
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
The Sequel::Model::Errors object related to this exception.
-
#model ⇒ Object
readonly
The Sequel::Model object related to this exception.
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(errors = nil) ⇒ ValidationFailed
constructor
A new instance of ValidationFailed.
Methods inherited from Error
Constructor Details
#initialize(errors = nil) ⇒ ValidationFailed
Returns a new instance of ValidationFailed.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/sequel/model/exceptions.rb', line 53 def initialize(errors=nil) if errors.is_a?(Sequel::Model) @model = errors errors = @model.errors end if errors.respond_to?(:full_messages) @errors = errors super(errors..join(', ')) else super end end |
Instance Attribute Details
#errors ⇒ Object (readonly)
The Sequel::Model::Errors object related to this exception.
51 52 53 |
# File 'lib/sequel/model/exceptions.rb', line 51 def errors @errors end |
#model ⇒ Object (readonly)
The Sequel::Model object related to this exception.
48 49 50 |
# File 'lib/sequel/model/exceptions.rb', line 48 def model @model end |