Exception: Mongoid::Errors::Validations

Inherits:
MongoidError show all
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.

Example:

Validations.new(person.errors)

Constant Summary

Constants inherited from MongoidError

MongoidError::BASE_KEY

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from MongoidError

#translate

Constructor Details

#initialize(document) ⇒ Validations

Returns a new instance of Validations.



13
14
15
16
17
18
19
20
21
# File 'lib/mongoid/errors/validations.rb', line 13

def initialize(document)
  @document = document
  super(
    translate(
      "validations",
      { :errors => document.errors.full_messages.join(", ") }
    )
  )
end

Instance Attribute Details

#documentObject (readonly)

Returns the value of attribute document.



12
13
14
# File 'lib/mongoid/errors/validations.rb', line 12

def document
  @document
end