python-dependency-injector/dependency_injector/errors.py

10 lines
160 B
Python
Raw Normal View History

2015-03-13 15:31:07 +00:00
"""Errors module."""
class Error(Exception):
"""Base error."""
class UndefinedProviderError(Error, AttributeError):
"""Undefined provider error."""