Files
codeql/python/ql/test/library-tests/exceptions/Handles.ql
2020-03-03 16:53:56 -08:00

5 lines
161 B
Plaintext

import python
from ExceptFlowNode ex, Object t
where ex.handledException_objectapi(t, _, _)
select ex.getLocation().getStartLine(), ex.toString(), t.toString()