class TinyDyno::Errors::InvalidHashKey

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.

Public Class Methods

new(klass:, name:) click to toggle source

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

Calls superclass method
# File lib/tiny_dyno/errors/hash_key_errors.rb, line 18
def initialize(klass:, name:)
  super(
      compose_message("invalid_hash_key", { klass: klass.name, name: name })
  )
end