UNPKG

@matterlabs/hardhat-zksync-node

Version:
9 lines (7 loc) 276 B
import { HardhatPluginError } from 'hardhat/plugins'; import { PLUGIN_NAME } from './constants'; export class ZkSyncNodePluginError extends HardhatPluginError { constructor(message: string, parentError?: Error) { super(PLUGIN_NAME, message, parentError); } }