@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (11 loc) • 404 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {SchemaMigrationError} from './schema-migration-error.js';
export class InvalidSchemaVersionError extends SchemaMigrationError {
public constructor(version: number, expected?: number) {
super(
expected
? `Invalid schema version '${version}'; expected version '${expected}'`
: `Invalid schema version '${version}'`,
);
}
}