@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
25 lines (24 loc) • 892 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { SoloError } from '../errors.js';
export declare class LeaseAcquisitionError extends SoloError {
/**
* Instantiates a new error with a message and an optional cause.
*
* @param message - the error message to be reported.
* @param cause - optional underlying cause of the error.
* @param meta - optional metadata to be reported.
*/
constructor(message: string, cause?: Error | any, meta?: any);
}
export declare class LeaseRelinquishmentError extends SoloError {
/**
* Instantiates a new error with a message and an optional cause.
*
* @param message - the error message to be reported.
* @param cause - optional underlying cause of the error.
* @param meta - optional metadata to be reported.
*/
constructor(message: string, cause?: Error | any, meta?: any);
}