11 instantiations of DockerLoadException
Microsoft.NET.Build.Containers (11)
LocalDaemons\ContainerRuntimeOperations.cs (2)
81throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), output.StandardError)); 118throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), stderr));
LocalDaemons\ContainerRuntimes.cs (5)
105throw new DockerLoadException(Strings.ImageLoadFailed_ContainerdStoreDisabled); 154throw new DockerLoadException(Resource.FormatString( 165throw new DockerLoadException(Resource.FormatString(nameof(Strings.DockerInfoFailed_Ex), e.Message)); 316throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), stderr)); 365throw new DockerLoadException(Strings.ImageLoadFailed_WslcMultiArchUnsupported);
LocalDaemons\DockerCli.cs (4)
99throw new DockerLoadException(Strings.ImageLoadFailed_ContainerdStoreDisabled); 129throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), await loadProcess.StandardError.ReadToEndAsync(cancellationToken).ConfigureAwait(false))); 217throw new DockerLoadException(Resource.FormatString( 228throw new DockerLoadException(Resource.FormatString(nameof(Strings.DockerInfoFailed_Ex), e.Message));
7 references to DockerLoadException
Microsoft.NET.Build.Containers (7)
ImagePublisher.cs (2)
118catch (AggregateException ex) when (ex.InnerException is DockerLoadException dle) 127catch (DockerLoadException dle)
LocalDaemons\ContainerRuntimes.cs (2)
163catch (Exception e) when (e is not DockerLoadException) 207catch (DockerLoadException)
LocalDaemons\DockerCli.cs (3)
199/// <exception cref="DockerLoadException">when failed to retrieve docker configuration.</exception> 226catch (Exception e) when (e is not DockerLoadException) 277catch (DockerLoadException)