def throw(text):
	raise Exception(text)

def a():
	throw('a')

def b():
	throw('b')

a()