@dolittle/sdk.artifacts
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
14 lines • 624 B
TypeScript
import { Exception } from '@dolittle/rudiments';
import { Constructor } from '@dolittle/types';
/**
* The exception that gets thrown when it is not possible to resolve the key for an object from a {@link TypeMap}.
*/
export declare class UnableToResolveKey extends Exception {
/**
* Initialises a new instance of the {@link TypeNotAssociatedWithKey} class.
* @param {any} object - The type that is missing an association.
* @param {Constructor} keyType - The type of the association key.
*/
constructor(object: any, keyType: Constructor<any>);
}
//# sourceMappingURL=UnableToResolveKey.d.ts.map