获取先前捕获的异常

时间:2015-07-08 10:52:06

标签: python python-2.7 exception-handling

是否有可能获得Python 2.7中某些库以前捕获的Exception?该库的功能如下:

try:
    something_that_throw_exception
except Exception, e:
    raise Exception("Error", e)

我希望获得e的类型或实例。

0 个答案:

没有答案