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