Exception: TinyDyno::Errors::UnknownAttribute

Inherits:
TinyDynoError
  • Object
show all
Defined in:
lib/tiny_dyno/errors/attribute_errors.rb

Overview

This error is raised when trying to set a value in TinyDyno that is not already set with dynamic attributes or the field is not defined.

Constant Summary

Constants inherited from TinyDynoError

TinyDynoError::BASE_KEY

Instance Method Summary collapse

Methods inherited from TinyDynoError

#compose_message

Constructor Details

#initialize(klass, name) ⇒ UnknownAttribute

Create the new error.

Examples:

Instantiate the error.

UnknownAttribute.new(Person, "gender")

Parameters:

  • klass (Class)

    The model class.

  • name (String, Symbol)

    The name of the attribute.

Since:

  • 3.0.0



18
19
20
21
22
# File 'lib/tiny_dyno/errors/attribute_errors.rb', line 18

def initialize(klass, name)
  super(
      compose_message("unknown_attribute", { klass: klass.name, name: name })
  )
end