Remove UndefinedProviderError

This commit is contained in:
Roman Mogilatov 2016-06-03 12:01:09 +03:00
parent b86760e467
commit 17d8283144

View File

@ -6,17 +6,3 @@ class Error(Exception):
All dependency injector errors extend this error class.
"""
class UndefinedProviderError(Error, AttributeError):
"""Undefined provider error.
This error is used when provider could not be defined, for example:
- provider with certain name could not be defined
- catalog's name of the certain provider could not be defined
- etc...
Also this error extends standard :py:class:`AttributeError`. This gives
possibility to use it correctly with ``__getattr__()``.
"""