class Mongoid::Errors::ReadonlyDocument
Raised when attempting to persist a document that was loaded from the database with partial fields.
@since 4.0.0
Public Class Methods
new(klass)
click to toggle source
Instnatiate the exception.
@example Create the error.
ReadonlyDocument.new(Band)
@param [ Class ] klass The document class.
@since 4.0.0
Calls superclass method
# File lib/mongoid/errors/readonly_document.rb, line 21 def initialize(klass) super(compose_message("readonly_document", { klass: klass })) end