Files
nest/packages/microservices/errors/corrupted-packet-length.exception.ts
2019-03-26 12:13:45 +01:00

6 lines
188 B
TypeScript

export class CorruptedPacketLengthException extends Error {
constructor(rawContentLength: string) {
super(`Corrupted length value "${rawContentLength}" supplied in a packet`);
}
}