Sha256: 7b280bacff30d0b08755431fcc2df0d6c6ec02b5d05eaf380862edb3cce417dd
Contents?: true
Size: 706 Bytes
Versions: 27
Compression:
Stored size: 706 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when attempting the change the value of a readonly # attribute after the document has been persisted. class ReadonlyAttribute < MongoidError # 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 def initialize(name, value) super( compose_message("readonly_attribute", { name: name, value: value }) ) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems