python-dependency-injector/dependency_injector/errors.py

10 lines
160 B
Python
Raw Normal View History

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