(self, message: str)
| 10 | Base exception for all GraphLite SDK errors. |
| 11 | """ |
| 12 | def __init__(self, message: str): |
| 13 | self.message = message |
| 14 | super().__init__(message) |
| 15 | |
| 16 | class GraphLiteCoreError(GraphLiteError): |
| 17 | """Error from the core GraphLite library""" |