Exception: TinyDyno::Errors::HashKeyOnly

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:) ⇒ HashKeyOnly

Create the new error.

Examples:

Instantiate the error.

HashKeysOnly.new(Person, "gender")

Parameters:

  • klass (Class)

    The model class.

  • name (String, Symbol)

    The name of the attribute.

Since:

  • 3.0.0



70
71
72
73
74
# File 'lib/tiny_dyno/errors/hash_key_errors.rb', line 70

def initialize(klass:, name:)
  super(
      compose_message("only search for hash keys", { klass: klass.name, name: name })
  )
end