@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
36 lines (31 loc) • 1.03 kB
JavaScript
;
/**
* Copyright © 2025 Nevis Security AG. All rights reserved.
*/
import { FidoUafAttestationInformationError } from './FidoUafAttestationInformationError';
/**
* The Certificate Revocation List (CRL) {@link https://android.googleapis.com/attestation/status | published by Google}
* with the revoked attestation certificates could not be retrieved.
*
* This is caused by a network connectivity issue.
*/
export class FidoUafAttestationInformationFetchCrlError 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=FidoUafAttestationInformationFetchCrlError.js.map