@dolittle/sdk.artifacts
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
12 lines • 604 B
TypeScript
import { Exception } from '@dolittle/rudiments';
/**
* The exception that gets thrown when attempting to access the internal map of a {@link NestedMap} as a values map when it is not the final level.
*/
export declare class CannotAccessValuesOfNestedMapWithMoreLevels extends Exception {
/**
* Initialises a new instance of the {@link CannotAccessValuesOfNestedMapWithMoreLevels} class.
* @param {number} depth - The depth at which the internal map was accessed as values.
*/
constructor(depth: number);
}
//# sourceMappingURL=CannotAccessValuesOfNestedMapWithMoreLevels.d.ts.map