@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
15 lines (12 loc) • 441 B
text/typescript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { OutOfBandOperationError } from '../operation/OutOfBandOperationError';
/**
* The error returned when there is a problem with the out-of-band payload: it cannot be decrypted
* or the provided JSON is not properly formatted.
*
* @group Errors
* @category Out-of-Band Payload
*/
export abstract class OutOfBandPayloadError extends OutOfBandOperationError {}