@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
43 lines (38 loc) • 1.09 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AuthCloudApiFidoError = void 0;
var _AuthCloudApiError = require("./AuthCloudApiError");
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
/**
* An error that indicates that a FIDO UAF error occurred during an operation.
*/
class AuthCloudApiFidoError extends _AuthCloudApiError.AuthCloudApiError {
/**
* The FIDO UAF error that occurred.
*/
/**
* Provides details about the error that occurred.
*/
/**
* The exception (if any) that caused this error.
*/
/**
* The default constructor.
*
* @param errorCode the FIDO UAF error that occurred.
* @param description provides details about the error that occurred.
* @param cause the exception (if any) that caused this error.
*/
constructor(errorCode, description, cause) {
super();
this.errorCode = errorCode;
this.description = description;
this.cause = cause;
}
}
exports.AuthCloudApiFidoError = AuthCloudApiFidoError;
//# sourceMappingURL=AuthCloudApiFidoError.js.map
;