1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.CorruptedPacketLengthException = void 0;
|
4 | /**
|
5 | * @publicApi
|
6 | */
|
7 | class CorruptedPacketLengthException extends Error {
|
8 | constructor(rawContentLength) {
|
9 | super(`Corrupted length value "${rawContentLength}" supplied in a packet`);
|
10 | }
|
11 | }
|
12 | exports.CorruptedPacketLengthException = CorruptedPacketLengthException;
|