Exception: TinyDyno::Errors::NotTransparentlyCoercible

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

Overview

This error is raised, when a query is performed with fields specified that are not HashKeys, which would result in a table scan

Constant Summary

Constants inherited from TinyDynoError

TinyDynoError::BASE_KEY

Instance Method Summary collapse

Methods inherited from TinyDynoError

#compose_message

Constructor Details

#initialize(klass:, name:, value:) ⇒ NotTransparentlyCoercible

Create the new error.

Examples:

Instantiate the error.

InvalidSelector.new(Person, "gender")

Parameters:

  • klass (Class)

    The model class.

  • name (String, Symbol)

    The name of the attribute.

Since:

  • 3.0.0



44
45
46
47
48
# File 'lib/tiny_dyno/errors/invalid_type_error.rb', line 44

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