GraphLite error codes
| 14 | |
| 15 | |
| 16 | class ErrorCode(IntEnum): |
| 17 | """GraphLite error codes""" |
| 18 | SUCCESS = 0 |
| 19 | NULL_POINTER = 1 |
| 20 | INVALID_UTF8 = 2 |
| 21 | DATABASE_OPEN_ERROR = 3 |
| 22 | SESSION_ERROR = 4 |
| 23 | QUERY_ERROR = 5 |
| 24 | PANIC_ERROR = 6 |
| 25 | JSON_ERROR = 7 |
| 26 | |
| 27 | |
| 28 | class GraphLiteError(Exception): |
no outgoing calls
no test coverage detected