Files
hardhat-zkit/src/errors.ts
2024-06-19 14:18:20 +03:00

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);
}
}