DiscordChatExporter/DiscordChatExporter.Gui/App.xaml.cs
2018-11-01 14:43:21 +02:00

13 lines
No EOL
388 B
C#

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);
}
}
}