UNPKG

@nestjs/microservices

Version:

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

10 lines (9 loc) 262 B
import { RuntimeException } from '@nestjs/core/internal'; /** * @publicApi */ export class InvalidProtoDefinitionException extends RuntimeException { constructor(path) { super(`The invalid .proto definition (file at "${path}" not found)`); } }