Exception: MongoMapper::DocumentNotValid

Inherits:
MongoMapperError show all
Defined in:
lib/mongo_mapper.rb

Overview

raised when document not valid and using !

Instance Method Summary collapse

Constructor Details

#initialize(document) ⇒ DocumentNotValid

Returns a new instance of DocumentNotValid.



19
20
21
22
# File 'lib/mongo_mapper.rb', line 19

def initialize(document)
  @document = document
  super("Validation failed: #{@document.errors.full_messages.join(", ")}")
end