mirror of
https://github.com/github/codeql.git
synced 2025-12-27 06:06:32 +01:00
10 lines
180 B
Python
10 lines
180 B
Python
|
|
|
|
def fixed_raise_tuple1():
|
|
ex = Exception("Important diagnostic information")
|
|
raise ex
|
|
|
|
|
|
def fixed_raise_tuple2():
|
|
raise Exception, "Important diagnostic information"
|