Occurs when an invalid argument is passed to one of the MSAL API methods.
This can include invalid configurations, null or malformed inputs,
or missing required arguments.
Exception class to indicate that one or more requested scopes have been
declined by the server. Developers can opt to continue acquiring token by
passing the grantedScopes and calling "acquireTokenSilent" call
on this error.
An unrecoverable error occured either within the MSAL client or
on server side.
More detailed information about the specific error can be found in
"MSALInternalError" enum.
This exception is created from Dart to validate that application is
initialized. SDK will throw this if any method from "PublicClientApplication"
class is called without creating the object of it.
Occurs when the server (Azure Active Directory or its related services)
encounters an issue and fails to process the request properly.
This error typically indicates that something went wrong on the server side,
such as a transient failure, misconfiguration, or other
backend-related problems.
This exception class represents errors when communicating to the service,
can be from the authorize or token endpoints.
Generally, these errors are resolved by fixing app configurations either
in code or in the app registration portal.