@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
43 lines (38 loc) • 1.2 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DeviceInformationCheckUnknownError = void 0;
var _DeviceInformationCheckError = require("./DeviceInformationCheckError");
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
/**
* Unknown device information check error, handling not categorized error cases.
*/
class DeviceInformationCheckUnknownError extends _DeviceInformationCheckError.DeviceInformationCheckError {
/**
* Provides details about the error that occurred.
*/
/**
* The exception (if any) that caused this error.
*/
/**
* The server where the error occurred.
*/
/**
* The default constructor.
*
* @param description provides details about the error that occurred.
* @param cause the exception (if any) that caused this error.
* @param server the server where the error occurred.
*/
constructor(description, cause, server) {
super();
this.description = description;
this.cause = cause;
this.server = server;
}
}
exports.DeviceInformationCheckUnknownError = DeviceInformationCheckUnknownError;
//# sourceMappingURL=DeviceInformationCheckUnknownError.js.map
;