Sha256: f47aa9ab81f2e81ed0f99e29589aa2dceca3ad930ad6809afd7e8b5ac97510ef
Contents?: true
Size: 688 Bytes
Versions: 105
Compression:
Stored size: 688 Bytes
Contents
# 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
105 entries across 100 versions & 7 rubygems