mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
23 lines
587 B
Python
23 lines
587 B
Python
"""Errors module."""
|
|
|
|
|
|
class Error(Exception):
|
|
"""Base error.
|
|
|
|
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__()``.
|
|
"""
|