Need more on the error being thrown? You need to name the exception like so:

try:
    raise Exception('MONSTER!')
except Exception as ex:
    print 'The error is a %s' % ex

>>> The error is a MONSTER!