@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
10 lines • 439 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
import { SchemaMigrationError } from './schema-migration-error.js';
export class InvalidSchemaVersionError extends SchemaMigrationError {
constructor(version, expected) {
super(expected
? `Invalid schema version '${version}'; expected version '${expected}'`
: `Invalid schema version '${version}'`);
}
}
//# sourceMappingURL=invalid-schema-version-error.js.map