在Python中,如何在保持原始调用堆栈的同时检查然后重新引发异常?

In Python, how do I inspect and then re-raise an exception while maintaining the original call stack?

我有一种情况,我正在捕获一个特定的异常类型,检查异常的消息,检查它是否实际上是我想要捕获的异常,然后重新引发异常,如果不是:

1
2
3
4
5
6
7
try:
    # do something exception-prone
except FooException as e:
    if e.message == 'Something I want to handle':
        # handle the exception
    else:
        raise e

这很好,有一个问题。在我重新引发异常的情况下,该异常现在发生在我重新引发它的行(即raise e),而不是在最初发生异常的位置。这对于调试来说并不理想,您希望知道原始异常发生的位置。

因此我的问题是:在保持原始异常位置的同时捕获它之后,是否有任何方法可以重新引发或以其他方式"传递"异常?

注意:如果您想知道实际情况是什么:我使用__import__动态导入一些模块。我正在捕捉ImportError以优雅地处理任何这些模块不存在的情况。但是,如果这些模块中的任何一个本身都包含一个引发ImportError的import语句,我希望引发那些"真实的"(从我的应用程序的角度来看)异常 - 并且在原始位置到目前为止作为调试工具。


做就是了:

1
raise

而不是raise e。 请参阅有关引发异常的教程部分,以及raise语句的语言参考:

If no expressions are present, raise re-raises the last exception that was active in the current scope. If no exception is active in the current scope, a TypeError exception is raised indicating that this is an error (if running under IDLE, a Queue.Empty exception is raised instead).