UNPKG

@hashgraph/solo

Version:

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

12 lines 482 B
// SPDX-License-Identifier: Apache-2.0 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 class ObjectMappingError extends SoloError { constructor(message, cause, meta) { super(message, cause, meta); } } //# sourceMappingURL=object-mapping-error.js.map