Exception: TinyDyno::Errors::InvalidSelector

Inherits:
TinyDynoError
  • Object
show all
Defined in:
lib/tiny_dyno/errors/hash_key_errors.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:) ⇒ InvalidSelector

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



123
124
125
126
127
# File 'lib/tiny_dyno/errors/hash_key_errors.rb', line 123

def initialize(klass:, name:)
  super(
      compose_message("look up only by key fields", { klass: klass.name, name: name })
  )
end