SignUpError class
- Extends
-
AuthActionErrorBase
Constructors
Sign |
Inherited Properties
error |
Methods
is |
Checks if the error is due to the attributes validation failed. |
is |
Checks if the error is due to the password being invalid or incorrect. |
is |
Checks if the error is due to the username is invalid. |
is |
Checks if the error is due to the required attributes are missing. |
is |
Check if client app supports the challenge type configured in Entra. |
is |
Checks if the error is due to the provided challenge type is not supported. |
is |
Checks if the error is due to the user already exists. |
Inherited Methods
is |
Checks if the error is due to the expired continuation token. |
Constructor Details
SignUpError(CustomAuthError)
Inherited Property Details
errorData
errorData: CustomAuthError
Property Value
Inherited From AuthActionErrorBase.errorData
Method Details
isAttributesValidationFailed()
Checks if the error is due to the attributes validation failed.
function isAttributesValidationFailed(): boolean
Returns
boolean
True if the error is due to the attributes validation failed, false otherwise.
isInvalidPassword()
Checks if the error is due to the password being invalid or incorrect.
function isInvalidPassword(): boolean
Returns
boolean
True if the error is due to the password being invalid, false otherwise.
isInvalidUsername()
Checks if the error is due to the username is invalid.
function isInvalidUsername(): boolean
Returns
boolean
True if the error is due to the user is invalid, false otherwise.
isMissingRequiredAttributes()
Checks if the error is due to the required attributes are missing.
function isMissingRequiredAttributes(): boolean
Returns
boolean
True if the error is due to the required attributes are missing, false otherwise.
isRedirectRequired()
Check if client app supports the challenge type configured in Entra.
function isRedirectRequired(): boolean
Returns
boolean
True if "loginPopup" function is required to continue sthe operation.
isUnsupportedChallengeType()
Checks if the error is due to the provided challenge type is not supported.
function isUnsupportedChallengeType(): boolean
Returns
boolean
True if the error is due to the provided challenge type is not supported, false otherwise.
isUserAlreadyExists()
Checks if the error is due to the user already exists.
function isUserAlreadyExists(): boolean
Returns
boolean
True if the error is due to the user already exists, false otherwise.
Inherited Method Details
isTokenExpired()
Checks if the error is due to the expired continuation token.
function isTokenExpired(): boolean
Returns
boolean
True if the error is due to the expired continuation token, false otherwise.
Inherited From AuthActionErrorBase.isTokenExpired