eventstore-interconnect
Version:
Eventstore interconnector
10 lines • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoLegacyConnectionError = void 0;
class NoLegacyConnectionError extends Error {
constructor(message, tcpEndPoint) {
super(`Connection to TCP eventstore failed while trying to connect to ${tcpEndPoint.host}:${tcpEndPoint.port}. Details: ${message}`);
}
}
exports.NoLegacyConnectionError = NoLegacyConnectionError;
//# sourceMappingURL=no-legacy-connection.error.js.map