BackEnd\BuildManager\BuildManager.cs (12)
40using ExceptionHandling = Microsoft.Build.Shared.ExceptionHandling;
1331catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1438catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1449catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1585ExceptionHandling.DumpExceptionToFile(e);
1807catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1880return !ExceptionHandling.IsCriticalException(e) && !ExceptionHandling.NotExpectedException(e) && e is not BuildAbortedException;
2484string exception = ExceptionHandling.ReadAnyExceptionFromFile(_instantiationTimeUtc);
2485loggingService?.LogError(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, exception);
2494loggingService?.LogError(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, shutdownPacket.Exception.ToString());
2977catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))