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
Source
# File lib/mongoid/errors/readonly_document.rb, line 21 def initialize(klass) super(compose_message("readonly_document", { klass: klass })) end
Instnatiate the exception.
@example Create the error.
ReadonlyDocument.new(Band)
@param [ Class ] klass The document class.
@since 4.0.0
Calls superclass method