@dolittle/sdk.services
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
18 lines (14 loc) • 616 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { Exception } from '@dolittle/rudiments';
/**
* Exception that gets thrown when the first message from a Reverse Call Dispatcher does not contain a Connect Response.
*/
export class DidNotReceiveConnectResponse extends Exception {
/**
* Initializes a new instance of {@link DidNotReceiveConnectResponse}.
*/
constructor() {
super('Did not receive connect response. Server message did not contain the connect response');
}
}