@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 641 B
TypeScript
import { ConfigurationError } from './configuration-error.js';
import { type ConfigSource } from '../spi/config-source.js';
/**
* Error indicating that a configuration source has already been registered.
*/
export declare class DuplicateConfigSourceError extends ConfigurationError {
/**
* Creates a new instance of DuplicateConfigurationSourceError.
*
* @param source - The duplicate ConfigSource instance.
* @param cause - The underlying cause of the error, if any.
* @param meta - Additional metadata associated with the error.
*/
constructor(source: ConfigSource, cause?: Error, meta?: object);
}