@dolittle/sdk.services
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
15 lines • 718 B
TypeScript
import { Exception, Guid } from '@dolittle/rudiments';
import { Failure } from '@dolittle/sdk.protobuf';
/**
* Exception that gets thrown when a failure occurs during registration of an event processor.
*/
export declare class RegistrationFailed extends Exception {
/**
* Initializes a new instance of {@link RegistrationFailed}.
* @param {string} kind - The kind that could not be registered.
* @param {Guid | string} identifier - The identifier that could not be registered.
* @param {Failure} failure - The failure describing why the regsitration failed.
*/
constructor(kind: string, identifier: Guid | string, failure: Failure);
}
//# sourceMappingURL=RegistrationFailed.d.ts.map