1 2 3 4 5 6 7 8 9 10 11
#!python3 #Chapter 10 Error Example def spam(): bacon() def bacon(): raise Exception('This is the error message') spam()