File: Credentials\CredentialRetrievalException.cs
Web Access
Project: ..\..\..\src\Containers\Microsoft.NET.Build.Containers\Microsoft.NET.Build.Containers.csproj (Microsoft.NET.Build.Containers)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.NET.Build.Containers.Resources;
 
namespace Microsoft.NET.Build.Containers.Credentials;
 
internal sealed class CredentialRetrievalException : Exception
{
    public CredentialRetrievalException(string registry, Exception innerException)
        : base(
            Resource.FormatString(nameof(Strings.FailedRetrievingCredentials), registry, innerException.Message),
            innerException)
    { }
}