Files
codeql/python/ql/src/Exceptions/IncorrectExceptOrder.py
2018-11-19 15:10:42 +00:00

11 lines
180 B
Python

def incorrect_except_order(val):
try:
val.attr
except Exception:
print ("Exception")
except AttributeError:
print ("AttributeError")