service_man/api/infrastructure/persistence/error.py

5 lines
173 B
Python
Raw Normal View History

2024-04-21 23:46:17 +03:00
class TransactionContextManagerError(Exception):
def __init__(self, message: str, *args: object) -> None:
self.message = message
super().__init__(*args)