5 instantiations of DockerLoadException
Microsoft.NET.Build.Containers (5)
LocalDaemons\DockerCli.cs (5)
123throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), await loadProcess.StandardError.ReadToEndAsync(cancellationToken).ConfigureAwait(false))); 151throw new DockerLoadException(Strings.ImageLoadFailed_ContainerdStoreDisabled); 216throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), stderr)); 308throw new DockerLoadException(Resource.FormatString( 319throw new DockerLoadException(Resource.FormatString(nameof(Strings.DockerInfoFailed_Ex), e.Message));
5 references to DockerLoadException
Microsoft.NET.Build.Containers (5)
ImagePublisher.cs (2)
118catch (AggregateException ex) when (ex.InnerException is DockerLoadException dle) 127catch (DockerLoadException dle)
LocalDaemons\DockerCli.cs (3)
290/// <exception cref="DockerLoadException">when failed to retrieve docker configuration.</exception> 317catch (Exception e) when (e is not DockerLoadException) 368catch (DockerLoadException)