@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
9 lines (8 loc) • 384 B
TypeScript
import { SoloError } from '../../../core/errors/solo-error.js';
/**
* Thrown by an object mapper when an error occurs during the mapping process. Errors can occur when the object to be
* mapped is not in the expected format or a type conversion fails.
*/
export declare class ObjectMappingError extends SoloError {
constructor(message: string, cause?: Error, meta?: object);
}