You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently parsing the exception messages to derive column/lineno values. This is obviously insane so I propose give the exceptions some structure by adding lineno, col and the rest as exception attributes.
Candidates are JsonPathLexerError and stuff like Exception('Parse error at %s:%s near token %s (%s)' % (t.lineno, t.col, t.value, t.type))
The text was updated successfully, but these errors were encountered:
I'm currently parsing the exception messages to derive column/lineno values. This is obviously insane so I propose give the exceptions some structure by adding lineno, col and the rest as exception attributes.
Candidates are JsonPathLexerError and stuff like Exception('Parse error at %s:%s near token %s (%s)' % (t.lineno, t.col, t.value, t.type))
The text was updated successfully, but these errors were encountered: