UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

15 lines (14 loc) 503 B
import { SoloError } from '../../../core/errors/solo-error.js'; /** * General purpose error for configuration failures. */ export declare class ConfigurationError extends SoloError { /** * Creates a new instance of ConfigurationError. * * @param message - The error message. * @param cause - The underlying cause of the error, if any. * @param meta - Additional metadata associated with the error. */ constructor(message: string, cause?: Error, meta?: object); }