AuthMethodRegistrationSubmitChallengeError class
Error that occurred during authentication method challenge submission.
- Extends
-
AuthActionErrorBase
Inherited Properties
| error |
Methods
| is |
Checks if the submitted challenge code is incorrect. |
Inherited Methods
| is |
Check if client app supports the challenge type configured in Entra. |
| is |
Checks if the error is due to the expired continuation token. |
Constructor Details
AuthMethodRegistrationSubmitChallengeError(CustomAuthError)
new AuthMethodRegistrationSubmitChallengeError(errorData: CustomAuthError)
Parameters
- errorData
- CustomAuthError
Inherited Property Details
errorData
errorData: CustomAuthError
Property Value
Inherited From AuthActionErrorBase.errorData
Method Details
isIncorrectChallenge()
Checks if the submitted challenge code is incorrect.
function isIncorrectChallenge(): boolean
Returns
boolean
true if the challenge code is incorrect, false otherwise.
Inherited Method Details
isRedirectRequired()
Check if client app supports the challenge type configured in Entra.
function isRedirectRequired(): boolean
Returns
boolean
True if client app doesn't support the challenge type configured in Entra, "loginPopup" function is required to continue the operation.
Inherited From AuthActionErrorBase.isRedirectRequired
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