UNPKG

@hiero-ledger/cryptography

Version:

Cryptographic utilities and primitives for the Hiero SDK

11 lines (10 loc) 261 B
/** * Signals that a key could not be realized from the input. */ export default class BadKeyError extends Error { /** * @param {Error | string} messageOrCause */ constructor(messageOrCause: Error | string); stack: string | undefined; }