Exception: Mongoid::Errors::Validations
- Inherits:
-
MongoidError
- Object
- StandardError
- MongoidError
- Mongoid::Errors::Validations
- Defined in:
- lib/mongoid/errors/validations.rb
Overview
Raised when a persistence method ending in ! fails validation. The message will contain the full error messages from the Document
in question.
Constant Summary
Constants inherited from MongoidError
Instance Attribute Summary collapse
-
#document ⇒ Object
readonly
Returns the value of attribute document.
Instance Method Summary collapse
-
#initialize(document) ⇒ Validations
constructor
A new instance of Validations.
Methods inherited from MongoidError
Constructor Details
#initialize(document) ⇒ Validations
Returns a new instance of Validations.
12 13 14 15 16 17 18 19 20 |
# File 'lib/mongoid/errors/validations.rb', line 12 def initialize(document) @document = document super( translate( "validations", { :errors => document.errors..join(", ") } ) ) end |
Instance Attribute Details
#document ⇒ Object (readonly)
Returns the value of attribute document.
11 12 13 |
# File 'lib/mongoid/errors/validations.rb', line 11 def document @document end |