1101 @param exceptionMessage message given by the exception (string) |
1101 @param exceptionMessage message given by the exception (string) |
1102 @param stackTrace list of stack entries (list of string) |
1102 @param stackTrace list of stack entries (list of string) |
1103 """ |
1103 """ |
1104 self.ui.raise_() |
1104 self.ui.raise_() |
1105 QApplication.processEvents() |
1105 QApplication.processEvents() |
1106 if exceptionType is None: |
1106 if not exceptionType: |
1107 E5MessageBox.critical( |
1107 E5MessageBox.critical( |
1108 self.ui, Program, |
1108 self.ui, Program, |
1109 self.tr('An unhandled exception occured.' |
1109 self.tr('An unhandled exception occured.' |
1110 ' See the shell window for details.')) |
1110 ' See the shell window for details.')) |
1111 return |
1111 return |