Files
codeql/python/ql/test/library-tests/exceptions/Handles.ql
2020-03-09 12:52:33 -07:00

5 lines
155 B
Plaintext

import python
from ExceptFlowNode ex, Value val
where ex.handledException(val, _, _)
select ex.getLocation().getStartLine(), ex.toString(), val.toString()