Exemple #1
0
 public void OnUnhandledException(string source, Exception e)
 {
     if (Engine != null)
     {
         Engine.OnUnhandledException(source, e);
     }
 }
Exemple #2
0
        private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            Exception ex = (Exception)e.ExceptionObject;

            Engine.OnUnhandledException(ex);
        }