BikeInCity.App.Application_UnhandledException C# (CSharp) Method

Application_UnhandledException() private method

private Application_UnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void
sender object
e System.Windows.ApplicationUnhandledExceptionEventArgs
return void
        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (System.Diagnostics.Debugger.IsAttached)
              {
            // An unhandled exception has occurred; break into the debugger
            System.Diagnostics.Debugger.Break();
              }

              e.Handled = true;
              MainPage page = RootFrame.Content as MainPage;
              page.ShowError(AppResources.Message_UnspecifiedError);
        }