UNPKG

@hashgraph/solo

Version:

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

28 lines (27 loc) 1.18 kB
/** * Exception thrown when there is a configuration error in the Helm client. */ export declare class HelmConfigurationException extends Error { /** * Constructs a new exception instance with the specified message. * * @param message the detail message (which is saved for later retrieval by the getMessage() method). */ constructor(message: string); /** * Constructs a new exception instance with the specified message and cause. * * @param message the detail message (which is saved for later retrieval by the getMessage() method). * @param cause the cause (which is saved for later retrieval by the getCause() method). * A null value is permitted, and indicates that the cause is nonexistent or unknown. */ constructor(message: string, cause: Error); /** * Constructs a new exception instance with the specified cause. * * @param cause the cause (which is saved for later retrieval by the getCause() method). * A null value is permitted, and indicates that the cause is nonexistent or unknown. */ constructor(cause: Error); cause?: Error; }