UNPKG

@matterlabs/hardhat-zksync-deploy

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