trustgraph/trustgraph/exceptions.py
cybermaggedon 1297cdb1d0
Improve request/response handling (#18)
* Request/response error handling with common client

* Fixup error handling change
2024-08-22 17:02:18 +01:00

14 lines
125 B
Python

class TooManyRequests(Exception):
pass
class LlmError(Exception):
pass
class ParseError(Exception):
pass