Edit

Share via


ResetPasswordSubmitCodeError class

Extends

AuthActionErrorBase

Constructors

ResetPasswordSubmitCodeError(CustomAuthError)

Inherited Properties

errorData

Methods

isInvalidCode()

Checks if the provided code is invalid.

isRedirectRequired()

Check if client app supports the challenge type configured in Entra.

Inherited Methods

isTokenExpired()

Checks if the error is due to the expired continuation token.

Constructor Details

ResetPasswordSubmitCodeError(CustomAuthError)

new ResetPasswordSubmitCodeError(errorData: CustomAuthError)

Parameters

errorData
CustomAuthError

Inherited Property Details

errorData

errorData: CustomAuthError

Property Value

Inherited From AuthActionErrorBase.errorData

Method Details

isInvalidCode()

Checks if the provided code is invalid.

function isInvalidCode(): boolean

Returns

boolean

True if the provided code is invalid, false otherwise.

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 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