static void UnhandledExceptionTrapper()

in dotnet/linux/App/Program.cs [116:120]


        static void UnhandledExceptionTrapper(object sender, UnhandledExceptionEventArgs e)
        {
            Console.WriteLine(e.ExceptionObject.ToString());
            Environment.Exit(1);
        }