Show unhandled exceptions to users

This commit is contained in:
Oleksii Holub 2018-11-01 14:43:21 +02:00
parent ba27a9f909
commit 23116b776b
2 changed files with 9 additions and 1 deletions

View file

@ -1,6 +1,13 @@
namespace DiscordChatExporter.Gui
using System.Windows;
using System.Windows.Threading;
namespace DiscordChatExporter.Gui
{
public partial class App
{
private void App_OnDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs args)
{
MessageBox.Show(args.Exception.ToString(), "Error occured", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}