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);
        }