@dolittle/sdk.projections
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
13 lines • 548 B
TypeScript
import { Exception } from '@dolittle/rudiments';
import { KeySelector } from './KeySelector';
/**
* Exception that is thrown when trying to register a projection with an unkown key selector type.
*/
export declare class UnknownKeySelectorType extends Exception {
/**
* Initialises a new instance of the {@link UnknownKeySelectorType} class.
* @param {KeySelector} selectorType - The key selector type that is not implemented.
*/
constructor(selectorType: KeySelector);
}
//# sourceMappingURL=UnknownKeySelectorType.d.ts.map