mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-29 21:14:00 +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."""
|