我目前使用以下代码:
from google.appengine.api.urlfetch import Error
try:
# some code here
except Error, message:
logging.error('exception - %s' % message)
但它只会捕获urlfetch错误。 如果我将其替换为:
try:
# some code here
except:
logging.error('exception')
然后它捕获所有错误。但是在这种情况下我怎么能得到错误信息呢?
答案 0 :(得分:1)
捕获泛型Python异常:
try:
i = 6/0
except Exception as e:
print( e )