Exception: MongoMapper::DocumentNotValid
- Defined in:
- lib/mongo_mapper/exceptions.rb
Overview
raised when document not valid and using !
Instance Attribute Summary collapse
-
#document ⇒ Object
readonly
Returns the value of attribute document.
Instance Method Summary collapse
-
#initialize(document) ⇒ DocumentNotValid
constructor
A new instance of DocumentNotValid.
Constructor Details
#initialize(document) ⇒ DocumentNotValid
Returns a new instance of DocumentNotValid.
19 20 21 22 |
# File 'lib/mongo_mapper/exceptions.rb', line 19 def initialize(document) @document = document super("Validation failed: #{document.errors..join(", ")}") end |
Instance Attribute Details
#document ⇒ Object (readonly)
Returns the value of attribute document.
17 18 19 |
# File 'lib/mongo_mapper/exceptions.rb', line 17 def document @document end |