public static void ThreadException(object sender, ThreadExceptionEventArgs e) { MapleError.CreateBug(e.Exception); }
public static void DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) { MapleError.CreateBug(e.Exception); }
public static void ThreadException(object sender, ThreadExceptionEventArgs e) { MapleError.SendIssue(MapleError.CreateIssue(e.Exception)); }
public static void UnhandledException(object sender, UnhandledExceptionEventArgs e) { MapleError.CreateBug(e.ExceptionObject as Exception); }
public static void DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) { e.Handled = true; MapleError.SendIssue(MapleError.CreateIssue(e.Exception)); }