Statement Python Tutorial

myexc = "My exception string"
try:
    raise myexc
except myexc:
    print 'caught'