try catch within try catch python code example
Example: python try except
try:
val = 1/0
except Exception as e:
raise Exception('ZeroDivisionError')
try:
val = 1/0
except Exception as e:
raise Exception('ZeroDivisionError')