UNPKG

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

Version:

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

41 lines (36 loc) 1.03 kB
"use strict"; /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ import { DeviceInformationSyncError } from "./DeviceInformationSyncError.js"; /** * Unknown device information sync error, handling not categorized error cases. * * @group Errors * @category Device Information Sync */ export class DeviceInformationSyncUnknownError extends DeviceInformationSyncError { /** * 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; } } //# sourceMappingURL=DeviceInformationSyncUnknownError.js.map