Exception: Dry::View::UndefinedConfigError Private
- Inherits:
-
StandardError
- Object
- StandardError
- Dry::View::UndefinedConfigError
- 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
Instance Method Summary collapse
-
#initialize(key) ⇒ UndefinedConfigError
constructor
private
A new instance of UndefinedConfigError.
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.
9 10 11 |
# File 'lib/dry/view/errors.rb', line 9 def initialize(key) super("no +#{key}+ configured") end |