@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines • 659 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
import { SoloError } from '../../../core/errors/solo-error.js';
export class MissingActiveContextError extends SoloError {
static MISSING_ACTIVE_CONTEXT = 'No active kubernetes context found. Please set current kubernetes context.';
/**
* Instantiates a new error with a message and an optional cause.
*
* @param cause - optional underlying cause of the error.
* @param meta - optional metadata to be reported.
*/
constructor(cause, meta) {
super(MissingActiveContextError.MISSING_ACTIVE_CONTEXT, cause, meta);
}
}
//# sourceMappingURL=missing-active-context-error.js.map