标签: python python-2.7 exception-handling
是否有可能获得Python 2.7中某些库以前捕获的Exception?该库的功能如下:
Exception
try: something_that_throw_exception except Exception, e: raise Exception("Error", e)
我希望获得e的类型或实例。
e