UNPKG

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

Version:

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

36 lines (31 loc) 859 B
"use strict"; /** * Copyright © 2026 Nevis Security AG. All rights reserved. */ import { OutOfBandOperationError } from "./OutOfBandOperationError.js"; /** * The operation was canceled on the server side. * * @group Errors * @category Out-of-Band Operation */ export class OutOfBandOperationServerCanceledOperation extends OutOfBandOperationError { /** * Provides details about the error that occurred. */ /** * The exception (if any) that caused this error. */ /** * The default constructor. * * @param description provides details about the error that occurred. * @param cause the exception (if any) that caused this error. */ constructor(description, cause) { super(); this.description = description; this.cause = cause; } } //# sourceMappingURL=OutOfBandOperationServerCanceledOperation.js.map