Exception: Hanami::View::UndefinedConfigError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/hanami/view/errors.rb

Overview

Error raised when critical settings are not configured.

Since:

  • 2.1.0

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ UndefinedConfigError

Returns a new instance of UndefinedConfigError.

Since:

  • 2.1.0



17
18
19
# File 'lib/hanami/view/errors.rb', line 17

def initialize(key)
  super("no +#{key}+ configured")
end