Exception: Dry::View::UndefinedConfigError Private

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

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Error raised when critical settings are not configured

API:

  • private

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ UndefinedConfigError

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of UndefinedConfigError.

API:

  • private



9
10
11
# File 'lib/dry/view/errors.rb', line 9

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