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