catching errors python code example
Example 1: throwing an exception python
raise Exception("message")
Example 2: 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 3: python try except print error
1 (x,y) = (5,0)
2 try:
3 z = x/y
4 except ZeroDivisionError as e:
5 z = e
6 print z
Example 4: python: raise error
class MyError(TypeError):
pass
raise MyError('An error happened')