1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.InvalidKafkaClientTopicException = void 0;
|
4 | const runtime_exception_1 = require("@nestjs/core/errors/exceptions/runtime.exception");
|
5 |
|
6 |
|
7 |
|
8 | class InvalidKafkaClientTopicException extends runtime_exception_1.RuntimeException {
|
9 | constructor(topic) {
|
10 | super(`The client consumer did not subscribe to the corresponding reply topic (${topic}).`);
|
11 | }
|
12 | }
|
13 | exports.InvalidKafkaClientTopicException = InvalidKafkaClientTopicException;
|