5 lines
173 B
Python
5 lines
173 B
Python
|
class TransactionContextManagerError(Exception):
|
||
|
def __init__(self, message: str, *args: object) -> None:
|
||
|
self.message = message
|
||
|
super().__init__(*args)
|