5 instantiations of NodeFailedToLaunchException
Microsoft.Build (5)
BackEnd\Components\Communications\NodeLauncher.cs (2)
155
throw new
NodeFailedToLaunchException
(ex);
212
throw new
NodeFailedToLaunchException
(e.NativeErrorCode.ToString(CultureInfo.InvariantCulture), e.Message);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
367
throw 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)
40
new(typeof(NodeFailedToLaunchException), (msg, inner) => new
NodeFailedToLaunchException
(msg, inner)),
4 references to NodeFailedToLaunchException
Microsoft.Build (4)
BackEnd\Components\Communications\RarNodeLauncher.cs (1)
44
catch (
NodeFailedToLaunchException
ex)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
40
new(typeof(
NodeFailedToLaunchException
), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
Instance\TaskFactories\TaskHostTask.cs (2)
407
catch (
NodeFailedToLaunchException
e)
733
e is
NodeFailedToLaunchException
nodeFailedExc ? nodeFailedExc.ErrorCode : string.Empty,