(self, message: str)
| 16 | class GraphLiteCoreError(GraphLiteError): |
| 17 | """Error from the core GraphLite library""" |
| 18 | def __init__(self, message: str): |
| 19 | super().__init__(f"GraphLite error: {message}") |
| 20 | |
| 21 | class SessionError(GraphLiteError): |
| 22 | """Session-related errors""" |