Session-related errors
| 19 | super().__init__(f"GraphLite error: {message}") |
| 20 | |
| 21 | class SessionError(GraphLiteError): |
| 22 | """Session-related errors""" |
| 23 | def __init__(self, message: str): |
| 24 | super().__init__(f"Session error: {message}") |
| 25 | |
| 26 | class QueryError(GraphLiteError): |
| 27 | """Query execution errors""" |