UNPKG

@dashevo/wallet-lib

Version:
10 lines (7 loc) 316 B
const WalletLibError = require('./WalletLibError'); class InjectionToPluginUnallowed extends WalletLibError { constructor(currentPluginName, injectingPluginName) { super(`Injection of plugin : ${injectingPluginName} into ${currentPluginName} not allowed`); } } module.exports = InjectionToPluginUnallowed;