mirror of
https://github.com/dl-solarity/hardhat-zkit.git
synced 2026-05-01 03:00:04 -04:00
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { NomicLabsHardhatPluginError } from "hardhat/plugins";
|
|
|
|
import { PLUGIN_NAME } from "./constants";
|
|
|
|
export class HardhatZKitError extends NomicLabsHardhatPluginError {
|
|
constructor(message: string, parent?: Error) {
|
|
super(PLUGIN_NAME, message, parent);
|
|
}
|
|
}
|