UnityEngine.UnhandledExceptionHandler.NativeUnhandledExceptionHandler C# (CSharp) Method

NativeUnhandledExceptionHandler() private method

private NativeUnhandledExceptionHandler ( ) : void
return void
        private static extern void NativeUnhandledExceptionHandler();
        private static void PrintException(string title, Exception e)

Usage Example

コード例 #1
0
        private static void HandleUnhandledException(object sender, UnhandledExceptionEventArgs args)
        {
            Exception exceptionObject = args.ExceptionObject as Exception;

            if (exceptionObject != null)
            {
                UnhandledExceptionHandler.PrintException("Unhandled Exception: ", exceptionObject);
            }
            UnhandledExceptionHandler.NativeUnhandledExceptionHandler();
        }
All Usage Examples Of UnityEngine.UnhandledExceptionHandler::NativeUnhandledExceptionHandler