UNPKG

@hashgraph/solo

Version:

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

16 lines 664 B
// SPDX-License-Identifier: Apache-2.0 import { SoloError } from '../solo-error.js'; import { ErrorOwnership } from '../error-ownership.js'; import { ErrorCodeRegistry } from '../error-code-registry.js'; export class LocalConfigNotFoundSoloError extends SoloError { retryable = false; ownership = ErrorOwnership.User; constructor(cause) { super({ message: 'Local configuration file not found', code: ErrorCodeRegistry.LOCAL_CONFIG_NOT_FOUND, troubleshootingSteps: 'Create a local config: solo deployment config create', }, cause); } } //# sourceMappingURL=local-config-not-found-solo-error.js.map