Exception: Configurable::KeyNotFoundError

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

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ KeyNotFoundError

Returns a new instance of KeyNotFoundError.



42
43
44
# File 'lib/pipekit/configurable.rb', line 42

def initialize(key)
  super("The key #{key} was not found in the configuration file")
end