UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

10 lines (9 loc) 287 B
import { RuntimeException } from '@nestjs/core/internal'; /** * @publicApi */ export class InvalidKafkaClientTopicException extends RuntimeException { constructor(topic) { super(`The client consumer did not subscribe to the corresponding reply topic (${topic}).`); } }