UNPKG

@nestjs/microservices

Version:

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

10 lines (9 loc) 253 B
import { RuntimeException } from '@nestjs/core/internal'; /** * @publicApi */ export class InvalidGrpcServiceException extends RuntimeException { constructor(name) { super(`The invalid gRPC service (service "${name}" not found)`); } }