假设我们有一个简单的主程序:
from matplotlib.backends.qt_compat import QtWidgets
from initial import InitialWindow
if __name__ == '__main__':
try:
app = QtWidgets.QApplication([])
ex = InitialWindow()
ex.show()
app.exec_()
except:
# Do something
print('Hello')
正在运行的应用程序非常复杂,并且正在创建多个窗口。为内部工作的每个类执行一个异常处理程序是很乏味的,所以我在考虑是否有一种方法可以捕获在执行app
主要过程中引发的任何异常,并且在终止程序之前先做些事情。
有没有办法做到这一点?
答案 0 :(得分:2)
您可以创建自己的错误处理程序,以捕获标准错误。例如这样;
import sys
import traceback
from matplotlib.backends.qt_compat import QtWidgets
from initial import InitialWindow
def error_handler(etype, value, tb):
error_msg = ''.join(traceback.format_exception(etype, value, tb))
# do something with the error message, for example print it
if __name__ == '__main__':
sys.excepthook = error_handler # redirect std error
app = QtWidgets.QApplication([])
ex = InitialWindow()
ex.show()
app.exec_()