3 instantiations of ProjectCacheException
Microsoft.Build (3)
BackEnd\Components\ProjectCache\Experimental\ProjectCacheException.cs (3)
63
throw new
ProjectCacheException
(message, innerException, hasBeenLoggedByProjectCache: false, errorCode);
74
throw new
ProjectCacheException
(message: message, innerException: null, hasBeenLoggedByProjectCache: true, errorCode: errorCode);
85
throw new
ProjectCacheException
(message: message, innerException: null, hasBeenLoggedByProjectCache: false, errorCode: errorCode);
5 references to ProjectCacheException
Microsoft.Build (2)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
36
new(typeof(Experimental.ProjectCache.
ProjectCacheException
), (msg, inner) => new ProjectCache.ProjectCacheException(msg, inner)),
BackEnd\Components\ProjectCache\ProjectCacheService.cs (1)
1000
catch (Exception e) when (e is not ProjectCacheException && e is not Experimental.ProjectCache.
ProjectCacheException
)
MSBuild (3)
XMake.cs (3)
1019
catch (Exception e) when (e is ProjectCacheException || e is Microsoft.Build.Experimental.ProjectCache.
ProjectCacheException
)
1023
Microsoft.Build.Experimental.ProjectCache.
ProjectCacheException
exppce = e as Microsoft.Build.Experimental.ProjectCache.
ProjectCacheException
;