@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
37 lines (32 loc) • 1.05 kB
JavaScript
;
/**
* Copyright © 2025 Nevis Security AG. All rights reserved.
*/
import { FidoUafAttestationInformationError } from "./FidoUafAttestationInformationError.js";
/**
* 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.
*
* @group Errors
* @category Attestation Information
*/
export class FidoUafAttestationInformationCertificateError extends FidoUafAttestationInformationError {
/**
* Provides details about the error that occurred.
*/
/**
* The exception (if any) that caused this error.
*/
/**
* The default constructor.
*
* @param description provides details about the error that occurred.
* @param cause the exception (if any) that caused this error.
*/
constructor(description, cause) {
super();
this.description = description;
this.cause = cause;
}
}
//# sourceMappingURL=FidoUafAttestationInformationCertificateError.js.map