60 def __init__(self, exc_type, exc_obj, exc_tb, title=None):
61 QDialog.__init__(self)
65 self.setWindowTitle(self.windowTitle() +
": " + title)
66 msg =
"%s: %s" % (exc_type.__name__, exc_obj)
67 self.
ui.exceptionLabel.setText(msg)
68 html =
"\n".join(traceback.format_exception(exc_type, exc_obj, exc_tb))
69 self.
ui.tracebackBrowser.setText(html)