Query execution errors
| 24 | super().__init__(f"Session error: {message}") |
| 25 | |
| 26 | class QueryError(GraphLiteError): |
| 27 | """Query execution errors""" |
| 28 | def __init__(self, message: str): |
| 29 | super().__init__(f"Query error: {message}") |
| 30 | |
| 31 | class TransactionError(GraphLiteError): |
| 32 | """Transaction errors""" |