BackEnd\Components\Communications\SerializationContractInitializer.cs (16)
26new(typeof(GenericBuildTransferredException), (msg, inner) => new GenericBuildTransferredException(msg, inner)),
27new(typeof(SdkResolverException), (msg, inner) => new SdkResolverException(msg, inner)),
28new(typeof(BuildAbortedException), BuildAbortedException.CreateFromRemote),
29new(typeof(CircularDependencyException), (msg, inner) => new CircularDependencyException(msg, inner)),
30new(typeof(InternalLoggerException), (msg, inner) => new InternalLoggerException(msg, inner)),
31new(typeof(InvalidProjectFileException), (msg, inner) => new InvalidProjectFileException(msg, inner)),
32new(typeof(InvalidToolsetDefinitionException), (msg, inner) => new InvalidToolsetDefinitionException(msg, inner)),
33new(typeof(ProjectCacheException), (msg, inner) => new ProjectCacheException(msg, inner)),
34new(typeof(InternalErrorException), InternalErrorException.CreateFromRemote),
35new(typeof(LoggerException), (msg, inner) => new LoggerException(msg, inner)),
36new(typeof(NodeFailedToLaunchException), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
37new(typeof(SchedulerCircularDependencyException), (msg, inner) => new SchedulerCircularDependencyException(msg, inner)),
38new(typeof(RegistryException), (msg, inner) => new RegistryException(msg, inner)),
39new(typeof(HostObjectException), (msg, inner) => new HostObjectException(msg, inner)),
40new(typeof(UnbuildableProjectTypeException), (msg, inner) => new UnbuildableProjectTypeException(msg, inner)),
41new(typeof(CriticalTaskException), (msg, inner) => new CriticalTaskException(msg, inner)));