Exception: HashGleaner::MissingKeysException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/hash_gleaner.rb

Instance Method Summary collapse

Constructor Details

#initialize(missing_keys) ⇒ MissingKeysException

Returns a new instance of MissingKeysException.



27
28
29
30
# File 'lib/hash_gleaner.rb', line 27

def initialize(missing_keys)
  msg = "Missing required keys #{missing_keys.keys.uniq}"
  super(msg)
end