@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
12 lines (11 loc) • 431 B
TypeScript
import { SoloError } from '../../../core/errors/solo-error.js';
export declare class MissingResourceNameError extends SoloError {
static MISSING_RESOURCE_NAME: string;
/**
* Instantiates a new error with a message and an optional cause.
*
* @param cause - optional underlying cause of the error.
* @param meta - optional metadata to be reported.
*/
constructor(cause?: Error, meta?: object);
}