UNPKG

4m-wallet-adapter

Version:
12 lines (9 loc) 232 B
'use strict'; class TransactionError extends Error { constructor(message, transactionId) { super(message); this.name = 'TransactionError'; this.transactionId = transactionId; } } module.exports = TransactionError;