summaryrefslogtreecommitdiff
path: root/misc/errorExample.py
blob: fe610e6acb4b8abf0750ad4cdb02e444106aebf6 (plain)
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()