UNPKG

@hashgraph/solo

Version:

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

15 lines (14 loc) 508 B
import { SoloError } from './solo-error.js'; export declare class DataValidationError extends SoloError { /** * Create a custom error for data validation error scenario * * error metadata will include `expected` and `found` values. * * @param message - error message * @param expected - expected value * @param found - value found * @param [cause] - source error (if any) */ constructor(message: string, expected: any, found: any, cause?: Error | any); }