« get me outta code hell

validators: validateProperties: nest in a cause layer - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/validators.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-01-03 20:34:28 -0400
committer(quasar) nebula <qznebula@protonmail.com>2024-01-03 20:35:45 -0400
commit5c48511052b8603b7077780e22f893f4c0160c74 (patch)
tree3eb449060b2e613949b5d437c544341155180edc /src/data/things/validators.js
parent9e20be3397fde456ae770cc7d4dfe95cfc2eff3f (diff)
validators: validateProperties: nest in a cause layer
Diffstat (limited to 'src/data/things/validators.js')
-rw-r--r--src/data/things/validators.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/data/things/validators.js b/src/data/things/validators.js
index c15a6cc..a212b8a 100644
--- a/src/data/things/validators.js
+++ b/src/data/things/validators.js
@@ -374,9 +374,11 @@ export function validateProperties(spec) {
         const value = object[specKey];
         try {
           specValidator(value);
-        } catch (error) {
-          error.message = `(key: ${colors.green(specKey)}, value: ${inspect(value)}) ${error.message}`;
-          push(error);
+        } catch (caughtError) {
+          const keyPart = colors.green(specKey);
+          const valuePart = inspect(value);
+          const message = `Error for key ${keyPart}: ${valuePart}`;
+          push(new Error(message, {cause: caughtError}));
         }
       }