11 lines
146 B
Python
11 lines
146 B
Python
class JSONPathError(Exception):
|
|
pass
|
|
|
|
|
|
class JsonPathLexerError(JSONPathError):
|
|
pass
|
|
|
|
|
|
class JsonPathParserError(JSONPathError):
|
|
pass
|