UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

43 lines (38 loc) 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DeviceInformationCheckNetworkError = void 0; var _DeviceInformationCheckError = require("./DeviceInformationCheckError"); /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ /** * A network error occurred. */ class DeviceInformationCheckNetworkError 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.DeviceInformationCheckNetworkError = DeviceInformationCheckNetworkError; //# sourceMappingURL=DeviceInformationCheckNetworkError.js.map