Exception: MongoMapper::DocumentNotValid

Inherits:
Error
  • Object
show all
Defined in:
lib/mongo_mapper/exceptions.rb

Overview

raised when document not valid and using !

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (DocumentNotValid) initialize(document)

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.full_messages.join(", ")}")
end

Instance Attribute Details

- (Object) document (readonly)

Returns the value of attribute document



17
18
19
# File 'lib/mongo_mapper/exceptions.rb', line 17

def document
  @document
end