UNPKG

hardhat

Version:

Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

14 lines 590 B
import { CustomError } from "@nomicfoundation/hardhat-utils/error"; class StackTraceGenerationError extends CustomError { } export class EdrProviderStackTraceGenerationError extends StackTraceGenerationError { constructor(error) { super("Failed to generate stack trace for the EDR provider", error); } } export class SolidityTestStackTraceGenerationError extends StackTraceGenerationError { constructor(message) { super("Failed to generate stack trace for the Solidity test", new Error(message)); } } //# sourceMappingURL=stack-trace-generation-errors.js.map