Artemis.App.GetArtemisExceptionViewer C# (CSharp) Метод

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

private static GetArtemisExceptionViewer ( Exception e ) : ExceptionViewer
e System.Exception
Результат ExceptionViewer
        private static ExceptionViewer GetArtemisExceptionViewer(Exception e)
        {
            var logger = LogManager.GetCurrentClassLogger();
            logger.Fatal(e, "Unhandled exception, showing dialog and shutting down.");
            return new ExceptionViewer("An unexpected error occurred in Artemis.", e)
            {
                Title = "Artemis - Exception :c",
                Height = 400,
                Width = 800
            };
        }
    }