5 instantiations of NodeFailedToLaunchException
Microsoft.Build (5)
BackEnd\Components\Communications\NodeLauncher.cs (2)
155throw new NodeFailedToLaunchException(ex); 212throw new NodeFailedToLaunchException(e.NativeErrorCode.ToString(CultureInfo.InvariantCulture), e.Message);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
367throw new NodeFailedToLaunchException(null, nodeFailedToLaunchError);
BackEnd\Components\Communications\NodeProviderOutOfProcTaskHost.cs (1)
743? throw new NodeFailedToLaunchException(errorCode: null, ResourceUtilities.GetResourceString("DotnetHostPathNotSet"))
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
40new(typeof(NodeFailedToLaunchException), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
4 references to NodeFailedToLaunchException
Microsoft.Build (4)
BackEnd\Components\Communications\RarNodeLauncher.cs (1)
44catch (NodeFailedToLaunchException ex)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
40new(typeof(NodeFailedToLaunchException), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
Instance\TaskFactories\TaskHostTask.cs (2)
407catch (NodeFailedToLaunchException e) 733e is NodeFailedToLaunchException nodeFailedExc ? nodeFailedExc.ErrorCode : string.Empty,