BiomePainter.Program.UnhandledException C# (CSharp) Метод

UnhandledException() статический приватный Метод

static private UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object
e System.UnhandledExceptionEventArgs
Результат void
        static void UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            if (e.ExceptionObject is Exception)
                LogException((Exception)e.ExceptionObject);
        }