BackEnd\BuildManager\BuildManager.cs (12)
40using ExceptionHandling = Microsoft.Build.Shared.ExceptionHandling;
1340catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1447catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1458catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1594ExceptionHandling.DumpExceptionToFile(e);
1816catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))
1889return !ExceptionHandling.IsCriticalException(e) && !ExceptionHandling.NotExpectedException(e) && e is not BuildAbortedException;
2493string exception = ExceptionHandling.ReadAnyExceptionFromFile(_instantiationTimeUtc);
2494loggingService?.LogError(buildEventContext, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, exception);
2503loggingService?.LogError(BuildEventContext.Invalid, new BuildEventFileInfo(string.Empty) /* no project file */, "ChildExitedPrematurely", node, ExceptionHandling.DebugDumpPath, shutdownPacket.Exception.ToString());
2986catch (Exception ex) when (!ExceptionHandling.IsCriticalException(ex))