@dolittle/sdk.projections
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
18 lines • 723 B
TypeScript
import { Exception } from '@dolittle/rudiments';
import { Constructor } from '@dolittle/types';
/**.
* Exception that gets thrown when the {@link IContainer} could not create an instance of the projection
*
* @export
* @class CouldNotCreateInstanceOfProjection
* @extends {Exception}
*/
export declare class CouldNotCreateInstanceOfProjection extends Exception {
/**
* Initializes an instance of {@link CouldNotCreateInstanceOfProjection}.
* @param {Constructor<any>} type - The projection type to be instantiated.
* @param {Exception} inner - The inner exception.
*/
constructor(type: Constructor<any>, inner: Exception);
}
//# sourceMappingURL=CouldNotCreateInstanceOfProjection.d.ts.map