UNPKG

@metamask/eth-ledger-bridge-keyring

Version:

A MetaMask compatible keyring, for ledger hardware wallets

13 lines 359 B
export class LedgerStatusError extends Error { /** * Creates a new LedgerStatusError. * * @param statusCode - The status code of the error. * @param message - The message of the error. */ constructor(statusCode, message) { super(message); this.statusCode = statusCode; } } //# sourceMappingURL=type.mjs.map