From fb94ce1c2c91510b37e3a9c502483e7d34bb4bb7 Mon Sep 17 00:00:00 2001 From: Misato Date: Tue, 6 Jan 2026 09:35:49 +0900 Subject: [PATCH] Add TailorErrorMessage --- packages/types/tailor.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/types/tailor.d.ts b/packages/types/tailor.d.ts index df3ee5c..58a0e5e 100644 --- a/packages/types/tailor.d.ts +++ b/packages/types/tailor.d.ts @@ -333,4 +333,8 @@ declare namespace tailor.workflow { implementation. */ function triggerJobFunction(job_name: string, args?: any): any; +} + +declare class TailorErrorMessage extends Error { + constructor(message?: string); } \ No newline at end of file