Microsoft.Identity.Client.MsalManagedIdentityException
This exception class is for exceptions generated from Managed Identity sources.
This class is deprecated and will be removed in a future release.
Catch MsalServiceException instead.
For more details, see https://aka.ms/msal-net-managed-identity
namespace Microsoft.Identity.Client
{
public class MsalManagedIdentityException : MsalServiceException
{
public new ManagedIdentitySource ManagedIdentitySource { get; }
public MsalManagedIdentityException(string errorCode, string errorMessage, ManagedIdentitySource source);
public MsalManagedIdentityException(string errorCode, string errorMessage, ManagedIdentitySource source, int statusCode);
public MsalManagedIdentityException(string errorCode, string errorMessage, Exception innerException, ManagedIdentitySource source, int statusCode);
public MsalManagedIdentityException(string errorCode, string errorMessage, Exception innerException, ManagedIdentitySource source);
}
}