@dashevo/wallet-lib
Version:
Light wallet library for Dash
10 lines (7 loc) • 316 B
JavaScript
const WalletLibError = require('./WalletLibError');
class InjectionToPluginUnallowed extends WalletLibError {
constructor(currentPluginName, injectingPluginName) {
super(`Injection of plugin : ${injectingPluginName} into ${currentPluginName} not allowed`);
}
}
module.exports = InjectionToPluginUnallowed;