mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
13 lines
388 B
C#
13 lines
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);
|
|
}
|
|
}
|
|
} |