Files
codeql/python/ql/test/library-tests/exceptions/Handles.ql
2018-11-19 15:15:54 +00:00

5 lines
151 B
Plaintext

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