@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
18 lines (15 loc) • 650 B
JavaScript
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
import { RecoverableError } from '../RecoverableError';
/**
* The recoverable error that can occur when verifying the user with a password.
*
* When this error occurs, the {@link PasswordUserVerifier.verifyPassword} method will be invoked again.
* This error will be returned by the {@link PasswordUserVerificationContext.lastRecoverableError}.
*
* Currently, this is always a {@link PasswordUserVerificationInvalidPassword}.
*/
export class PasswordUserVerificationError extends RecoverableError {}
//# sourceMappingURL=PasswordUserVerificationError.js.map
;