class Hanami::View::UndefinedConfigError

Error raised when critical settings are not configured.

@api public @since 2.1.0

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/hanami/view/errors.rb, line 17
def initialize(key)
  super("no +#{key}+ configured")
end