UNPKG

@hashgraph/solo

Version:

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

44 lines (43 loc) 1.74 kB
import { SoloError } from '../../../core/errors/solo-error.js'; export declare class NamespaceNameInvalidError extends SoloError { static NAMESPACE_NAME_INVALID: (name: string) => string; /** * Instantiates a new error with a message and an optional cause. * * @param namespaceName - the invalid namespace name. * @param cause - optional underlying cause of the error. * @param meta - optional metadata to be reported. */ constructor(namespaceName: string, cause?: Error | any, meta?: any); } export declare class ContainerNameInvalidError extends SoloError { static CONTAINER_NAME_INVALID: (name: string) => string; /** * Instantiates a new error with a message and an optional cause. * * @param containerName - the invalid container name. * @param cause - optional underlying cause of the error. * @param meta - optional metadata to be reported. */ constructor(containerName: string, cause?: Error | any, meta?: any); } export declare class MissingPodReferenceError extends SoloError { static MISSING_POD_REF: 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 | any, meta?: any); } export declare class MissingContainerNameError extends SoloError { static MISSING_CONTAINER_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 | any, meta?: any); }