MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / __init__

Method __init__

bindings/python/graphlite/graphlite.py:31–34  ·  view source on GitHub ↗
(self, code: ErrorCode, message: str)

Source from the content-addressed store, hash-verified

29 """Exception raised for GraphLite errors"""
30
31 def __init__(self, code: ErrorCode, message: str):
32 self.code = code
33 self.message = message
34 super().__init__(f"GraphLite error ({code.name}): {message}")
35
36
37class QueryResult:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected