Connection errors
| 59 | super().__init__(f"Not found: {message}") |
| 60 | |
| 61 | class ConnectionError(GraphLiteError): |
| 62 | """Connection errors""" |
| 63 | def __init__(self, message: str): |
| 64 | super().__init__(f"Connection error: {message}") |
| 65 | |
| 66 | class IoError(GraphLiteError): |
| 67 | """I/O errors""" |