UNPKG

@dashevo/wallet-lib

Version:
9 lines (7 loc) 235 B
const WalletLibError = require('./WalletLibError'); class TransporterGenericError extends WalletLibError { constructor(act, reason) { super(`Unable to ${act}, reason: ${reason}`); } } module.exports = TransporterGenericError;