@nestjs/microservices
Version:
Nest - modern, fast, powerful node.js web framework (@microservices)
13 lines (12 loc) • 399 B
JavaScript
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;
;