public static void Error(NSException exception)
 {
     if (exception != null)
     {
         AlertManager.ShowAlert("Native Exception", exception.ToString(), "OK");
     }
 }
 public static void Error(NSException exception)
 {
     if (exception != null)
     {
         ErrorAction?.Invoke(exception.ToString());
     }
 }
Exemple #3
0
        private static void MyUncaughtExceptionHandler(IntPtr exception)
        {
            var e = new NSException(exception);

            AppDelegate.HandleException(e.ToString());
        }
Exemple #4
0
 private static void MyUncaughtExceptionHandler(IntPtr exception)
 {
     var e = new NSException(exception);
     AppDelegate.HandleException(e.ToString());
 }