Advertisement
Guest User

Untitled

a guest
Mar 13th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. public App()
  2.         {
  3.             AppDomain currentDomain = AppDomain.CurrentDomain;
  4.             currentDomain.UnhandledException += new UnhandledExceptionEventHandler(handler);
  5.         }
  6.  
  7.         static void handler(object sender, UnhandledExceptionEventArgs args)
  8.         {
  9.             Exception e = (Exception)args.ExceptionObject;
  10.             MessageBox.Show(e.Message);
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement