私は持っている:
try:
...
except Exception, e:
print "Problem. %s" % str(e)
ただし、試してみると、例外が発生したかのように動作する必要があります。それは非Pythonicですか:
try:
...
raise Exception, 'Type 1 error'
...
except Exception, e:
print "Problem. Type 2 error %s" % str(e)