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);
6 references to ProjectCacheException
Microsoft.Build (2)
BackEnd\Components\Communications\SerializationContractInitializer.cs (1)
35
new(typeof(Experimental.ProjectCache.
ProjectCacheException
), (msg, inner) => new ProjectCache.ProjectCacheException(msg, inner)),
BackEnd\Components\ProjectCache\ProjectCacheService.cs (1)
975
catch (Exception e) when (e is not ProjectCacheException && e is not Experimental.ProjectCache.
ProjectCacheException
)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TranslationHelpers.cs (1)
100
if (left.GetType() == typeof(Experimental.ProjectCache.
ProjectCacheException
) &&
MSBuild (3)
XMake.cs (3)
1028
catch (Exception e) when (e is ProjectCacheException || e is Experimental.ProjectCache.
ProjectCacheException
)
1032
Experimental.ProjectCache.
ProjectCacheException
exppce = e as Experimental.ProjectCache.
ProjectCacheException
;