<PackageReference Include="Microsoft.Identity.Client" Version="4.84.2" />

Microsoft.Identity.Client.MsalClientException

This exception class represents errors that are local to the library or the device. Contrary to MsalServiceException which represent errors happening from the Azure AD service or the network. For more details, see https://aka.ms/msal-net-exceptions
namespace Microsoft.Identity.Client { public class MsalClientException : MsalException { public MsalClientException(string errorCode); public MsalClientException(string errorCode, string errorMessage); public MsalClientException(string errorCode, string errorMessage, Exception innerException); } }