2 writes to ExceptionMessage
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
Rpc\RpcServer.cs (1)
159
response = new Response { Id = request.Id,
ExceptionMessage
= $"An exception of type {e.GetType()} was thrown: {e.Message}", ExceptionStackTrace = e.StackTrace };
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
src\Workspaces\MSBuild\BuildHost\Rpc\RpcServer.cs (1)
159
response = new Response { Id = request.Id,
ExceptionMessage
= $"An exception of type {e.GetType()} was thrown: {e.Message}", ExceptionStackTrace = e.StackTrace };
2 references to ExceptionMessage
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
Rpc\RpcClient.cs (2)
76
if (response.
ExceptionMessage
!= null)
78
completionSource.SetException(new RemoteInvocationException(response.
ExceptionMessage
, response.ExceptionStackTrace));