@dolittle/sdk.projections
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
13 lines • 614 B
TypeScript
import { Exception } from '@dolittle/rudiments';
import { ProjectionCurrentStateType } from '@dolittle/contracts/Runtime/Projections/State_pb';
/**
* Exception that gets thrown when trying to use a {@link ProjectionCurrentStateType} that is unknown.
*/
export declare class UnknownCurrentStateType extends Exception {
/**
* Initialises a new instance of the {@link UnknownCurrentStateType} class.
* @param {ProjectionCurrentStateType} type - The current state type that is not known.
*/
constructor(type: ProjectionCurrentStateType);
}
//# sourceMappingURL=UnknownCurrentStateType.d.ts.map