Sha256: 01f570bd5de4c48a3a60140f4ff8df82900c90f32963ac45a6cad329bb90559b
Contents?: true
Size: 719 Bytes
Versions: 27
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when trying to set a value in Mongoid that is not # already set with dynamic attributes or the field is not defined. class UnknownAttribute < MongoidError # Create the new error. # # @example Instantiate the error. # UnknownAttribute.new(Person, "gender") # # @param [ Class ] klass The model class. # @param [ String, Symbol ] name The name of the attribute. # # @since 3.0.0 def initialize(klass, name) super( compose_message("unknown_attribute", { klass: klass.name, name: name }) ) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems