mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 10:03:56 +03:00
10 lines
160 B
Python
10 lines
160 B
Python
"""Errors module."""
|
|
|
|
|
|
class Error(Exception):
|
|
"""Base error."""
|
|
|
|
|
|
class UndefinedProviderError(Error, AttributeError):
|
|
"""Undefined provider error."""
|