mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
export class CorruptedPacketLengthException extends Error {
|
|
constructor(rawContentLength: string) {
|
|
super(`Corrupted length value "${rawContentLength}" supplied in a packet`);
|
|
}
|
|
}
|