UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

34 lines (29 loc) 942 B
/** * Copyright © 2025 Nevis Security AG. All rights reserved. */ import { FidoUafAttestationInformationError } from './FidoUafAttestationInformationError'; /** * There was an unexpected error retrieving the certificate information from the device. If this error * happens, it should be assumed that only basic surrogate attestation is supported by the device. */ export class FidoUafAttestationInformationCertificateError extends FidoUafAttestationInformationError { /** * Provides details about the error that occurred. */ description: string; /** * The exception (if any) that caused this error. */ cause?: string; /** * The default constructor. * * @param description provides details about the error that occurred. * @param cause the exception (if any) that caused this error. */ constructor(description: string, cause?: string) { super(); this.description = description; this.cause = cause; } }