python get all exceptions code example
Example 1: python catch all exceptions
try:
raise Exception("Oh no! An error happened!")
except Exception as err:
print("An error was handled")
finally:
print("This runs either way.")
Example 2: catch error data with except python
import sys
try:
S = 1/0
except:
e = sys.exc_info()
print(e)
try:
S = 1/0
except ZeroDivisionError as e:
print(e)
Example 3: python defualt error handler
import sys
def my_except_hook(exctype, value, traceback):
if exctype == KeyboardInterrupt:
print "Handler code goes here"
else:
sys.__excepthook__(exctype, value, traceback)
sys.excepthook = my_except_hook