public static void Show(this Exception e) { // Exceptions viewer must be shown on STA thread. LogViewer.Invoke(() => { var exceptionReporter = new ExceptionReporting.ExceptionReporter(); exceptionReporter.Show(e); }); }