11 lines
146 B
Python
Raw Normal View History

2024-05-25 18:45:07 +02:00
class JSONPathError(Exception):
pass
class JsonPathLexerError(JSONPathError):
pass
class JsonPathParserError(JSONPathError):
pass