UNPKG

@hashgraph/solo

Version:

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

17 lines 558 B
// SPDX-License-Identifier: Apache-2.0 import { SoloError } from './solo-error.js'; export 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, resource, cause = {}) { super(message, cause, { resource }); } } //# sourceMappingURL=resource-not-found-error.js.map