Exemplo n.º 1
0
 public static void ThreadException(object sender, ThreadExceptionEventArgs e)
 {
     MapleError.CreateBug(e.Exception);
 }
Exemplo n.º 2
0
 public static void DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
 {
     MapleError.CreateBug(e.Exception);
 }
Exemplo n.º 3
0
 public static void ThreadException(object sender, ThreadExceptionEventArgs e)
 {
     MapleError.SendIssue(MapleError.CreateIssue(e.Exception));
 }
Exemplo n.º 4
0
 public static void UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     MapleError.CreateBug(e.ExceptionObject as Exception);
 }
Exemplo n.º 5
0
 public static void DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
 {
     e.Handled = true;
     MapleError.SendIssue(MapleError.CreateIssue(e.Exception));
 }