Exception: Dry::Effects::Errors::ResolutionError Private
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Dry::Effects::Errors::ResolutionError
- Includes:
- Error
- Defined in:
- lib/dry/effects/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.
Unresolved dependency
Instance Method Summary collapse
-
#initialize(key) ⇒ ResolutionError
constructor
private
A new instance of ResolutionError.
Constructor Details
#initialize(key) ⇒ ResolutionError
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 ResolutionError.
70 71 72 |
# File 'lib/dry/effects/errors.rb', line 70 def initialize(key) super("Key +#{key.inspect}+ cannot be resolved") end |