UNPKG

@nestjs/microservices

Version:

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

13 lines (12 loc) 399 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MaxPacketLengthExceededException = void 0; /** * @publicApi */ class MaxPacketLengthExceededException extends Error { constructor(length) { super(`The packet length (${length}) exceeds the maximum allowed length`); } } exports.MaxPacketLengthExceededException = MaxPacketLengthExceededException;