#!python3 #Chapter 10 Error Example def spam(): bacon() def bacon(): raise Exception('This is the error message') spam()