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.1 kB
"use strict"; /** * Copyright © 2024 Nevis Security AG. All rights reserved. */ import { DeviceInformationCheckError } from "./DeviceInformationCheckError.js"; /** * The SDK could not access the credentials in the backend. * * This can occur if the dispatch target credentials have been removed from the server. * * @group Errors * @category Device Information Check */ export class DeviceInformationCheckForbidden extends 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; } } //# sourceMappingURL=DeviceInformationCheckForbidden.js.map