@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (13 loc) • 448 B
TypeScript
import { SoloError } from './solo-error.js';
export declare class ResourceNotFoundError extends SoloError {
/**
* Create a custom error for resource not found scenario
*
* error metadata will include `resource`
*
* @param message - error message
* @param resource - name of the resource
* @param cause - source error (if any)
*/
constructor(message: string, resource: string, cause?: Error | any);
}