@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
40 lines (36 loc) • 1.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FidoUafAttestationInformationFetchCrlError = void 0;
var _FidoUafAttestationInformationError = require("./FidoUafAttestationInformationError");
/**
* Copyright © 2025 Nevis Security AG. All rights reserved.
*/
/**
* 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.
*/
class FidoUafAttestationInformationFetchCrlError extends _FidoUafAttestationInformationError.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;
}
}
exports.FidoUafAttestationInformationFetchCrlError = FidoUafAttestationInformationFetchCrlError;
//# sourceMappingURL=FidoUafAttestationInformationFetchCrlError.js.map