void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { TrySaveSpeakersDatabase(); ExceptionCatchWindow w = new ExceptionCatchWindow(this, e.ExceptionObject as Exception); w.ShowDialog(); }
void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { ExceptionCatchWindow w = new ExceptionCatchWindow(this, e.ExceptionObject as Exception); w.ShowDialog(); }