UnityEngine.UnhandledExceptionHandler.HandleUnhandledException C# (CSharp) Method

HandleUnhandledException() private static method

private static HandleUnhandledException ( object sender, UnhandledExceptionEventArgs args ) : void
sender object
args System.UnhandledExceptionEventArgs
return void
        private static void HandleUnhandledException(object sender, UnhandledExceptionEventArgs args)
        {
            Exception exceptionObject = args.ExceptionObject as Exception;
            if (exceptionObject != null)
            {
                PrintException("Unhandled Exception: ", exceptionObject);
            }
            NativeUnhandledExceptionHandler();
        }