From 86ebff93b0194e92c49927402eb28228a3364bc5 Mon Sep 17 00:00:00 2001 From: Vex Date: Wed, 29 Jul 2026 18:16:02 +0000 Subject: [PATCH] feat(proto): enhance classify method in Perception module --- src/proto/Perception.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/proto/Perception.js b/src/proto/Perception.js index b7736748..70a115ab 100644 --- a/src/proto/Perception.js +++ b/src/proto/Perception.js @@ -83,8 +83,8 @@ export class Perception { } inputs.forEach((input) => { if (input === null || input === undefined || typeof input !== 'number' || !isFinite(input)) { - throw new TypeError('all inputs must be finite numbers'); + throw new TypeError('all inputs must be valid finite numbers'); } }); } -} \ No newline at end of file +}