AcManager.EntryPoint.UnhandledExceptionFancyHandler C# (CSharp) Метод

UnhandledExceptionFancyHandler() приватный Метод

private UnhandledExceptionFancyHandler ( Exception e ) : void
e System.Exception
Результат void
        private static void UnhandledExceptionFancyHandler(Exception e) {
            if (!System.Windows.Application.Current.Windows.OfType<Window>().Any(x => x.IsLoaded && x.IsVisible)) {
                throw new Exception();
            }

            DpiAwareWindow.OnFatalError(e);
        }