lint fix at local
This commit is contained in:
ghy
2025-09-06 16:15:52 +08:00
committed by GitHub
parent 4f6270fb95
commit 9403addd44

View File

@@ -2,8 +2,8 @@ import { RuntimeException } from '@nestjs/core/errors/exceptions/runtime.excepti
export class InvalidTcpDataReceptionException extends RuntimeException {
constructor(err: string) {
const _errMsg = err.includes('Corrupted length value')
? `Corrupted length value of the received data supplied in a packet`
const _errMsg = err.includes('Corrupted length value')
? `Corrupted length value of the received data supplied in a packet`
: `The invalid received message from tcp server`;
super(_errMsg);
}