UNPKG

@dashevo/wallet-lib

Version:
10 lines (7 loc) 226 B
const WalletLibError = require('./WalletLibError'); class TransactionNotInStore extends WalletLibError { constructor(txid) { super(`Transaction is not in store: ${txid}`); } } module.exports = TransactionNotInStore;