service_man/api/infrastructure/persistence/error.py

5 lines
173 B
Python

class TransactionContextManagerError(Exception):
def __init__(self, message: str, *args: object) -> None:
self.message = message
super().__init__(*args)