BiomePainter.Program.UnhandledException C# (CSharp) Method

UnhandledException() static private method

static private UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object
e System.UnhandledExceptionEventArgs
return void
        static void UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            if (e.ExceptionObject is Exception)
                LogException((Exception)e.ExceptionObject);
        }