@dolittle/sdk.common
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
15 lines • 773 B
TypeScript
import { Exception } from '@dolittle/rudiments';
import { Constructor } from '@dolittle/types';
import { AnyIdentifier } from './Identifier';
/**
* The exception that is thrown when attempting to unbind an identifier from a type that it is not bound to.
*/
export declare class CannotUnbindIdentifierFromTypeThatIsNotBound extends Exception {
/**
* Initialises a new instance of the {@link CannotUnbindIdentifierFromTypeThatIsNotBound} class.
* @param {AnyIdentifier} identifier - The identifier that was attempted to unbind.
* @param {Constructor} type - The type that was attempted to unbind from.
*/
constructor(identifier: AnyIdentifier, type: Constructor<any>);
}
//# sourceMappingURL=CannotUnbindIdentifierFromTypeThatIsNotBound.d.ts.map