@dashevo/wallet-lib
Version:
Light wallet library for Dash
16 lines (11 loc) • 324 B
JavaScript
const WalletLibError = require('./WalletLibError');
class PluginInjectionError extends WalletLibError {
constructor(error) {
super(`Failed to perform standard injections with reason: ${error.message}`);
this.error = error;
}
getError() {
return this.error;
}
}
module.exports = PluginInjectionError;