mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-01-31 11:51:39 +03:00
13 lines
263 B
Python
13 lines
263 B
Python
"""Dependency injector errors."""
|
|
|
|
|
|
class Error(Exception):
|
|
"""Base error.
|
|
|
|
All dependency injector errors extend this error class.
|
|
"""
|
|
|
|
|
|
class NoSuchProviderError(Error, AttributeError):
|
|
"""Error that is raised when provider lookup is failed."""
|