mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
9 lines
135 B
Python
9 lines
135 B
Python
"""Errors module."""
|
|
|
|
|
|
class Error(Exception):
|
|
"""Base error.
|
|
|
|
All dependency injector errors extend this error class.
|
|
"""
|