Parent

Methods

Class/Module Index [+]

Quicksearch

Mongoid::Errors::ReadonlyAttribute

This error is raised when attempting the change the value of a readonly attribute after the document has been persisted.

Public Class Methods

new(name, value) click to toggle source

Create the new error.

@example Create the new error.

ReadonlyAttribute.new(:title, "mr")

@param [ Symbol, String ] name The name of the attribute. @param [ Object ] value The attempted set value.

@since 3.0.0

# File lib/mongoid/errors/readonly_attribute.rb, line 17
def initialize(name, value)
  super(
    compose_message("readonly_attribute", { name: name, value: value })
  )
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.