UNPKG

@nestjs/microservices

Version:

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

9 lines (8 loc) 201 B
/** * @publicApi */ export class MaxPacketLengthExceededException extends Error { constructor(length) { super(`The packet length (${length}) exceeds the maximum allowed length`); } }