fix lint error

Delete "."
This commit is contained in:
ghy
2025-09-05 14:55:49 +08:00
committed by GitHub
parent a63c411d92
commit 4eb049261d

View File

@@ -3,8 +3,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.'
: 'The invalid received message from tcp server.';
? 'Corrupted length value of the received data supplied in a packet'
: 'The invalid received message from tcp server';
super(_errMsg);
}
}