(self, message: str)
| 36 | class SerializationError(GraphLiteError): |
| 37 | """Serialization/deserialization errors""" |
| 38 | def __init__(self, message: str): |
| 39 | super().__init__(f"Serialization error: {message}") |
| 40 | |
| 41 | @classmethod |
| 42 | def from_json_error(cls, error: json.JSONDecodeError) -> "SerializationError": |