@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
45 lines (40 loc) • 1.25 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DeviceInformationCheckForbidden = void 0;
var _DeviceInformationCheckError = require("./DeviceInformationCheckError");
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
/**
* The SDK could not access the credentials in the backend.
*
* This can occur if the dispatch target credentials have been removed from the server.
*/
class DeviceInformationCheckForbidden extends _DeviceInformationCheckError.DeviceInformationCheckError {
/**
* The server where the error occurred.
*/
/**
* Provides details about the error that occurred.
*/
/**
* The exception (if any) that caused this error.
*/
/**
* The default constructor.
*
* @param server the server where the error occurred.
* @param description provides details about the error that occurred.
* @param cause the exception (if any) that caused this error.
*/
constructor(server, description, cause) {
super();
this.server = server;
this.description = description;
this.cause = cause;
}
}
exports.DeviceInformationCheckForbidden = DeviceInformationCheckForbidden;
//# sourceMappingURL=DeviceInformationCheckForbidden.js.map
;