Sha256: cc7dc1efc94acf2579b104edb44a36526e63c53429c3ef7372577e4c22696e4e

Contents?: true

Size: 659 Bytes

Versions: 9

Compression:

Stored size: 659 Bytes

Contents

# frozen_string_literal: true

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.
      def initialize(name, value)
        super(
          compose_message("readonly_attribute", { name: name, value: value })
        )
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mongoid-7.5.4 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.5.3 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.5.2 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.5.1 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.4.3 lib/mongoid/errors/readonly_attribute.rb
mongoid-8.0.1 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.5.0 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.4.1 lib/mongoid/errors/readonly_attribute.rb
mongoid-7.4.0 lib/mongoid/errors/readonly_attribute.rb