Files
klz-cables.com/.pnpm-store/v10/files/a4/19345de430af57d74985a1e9cc41ed9cd91d4a1cf44252beceb2067f48138e852d0b83be80eae3a535ca864eaf7f1953102923fe8dce8da75939e1c0b5788d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
596 B
Plaintext

export class TaskError extends Error {
args;
constructor(args){
super(args.message);
this.args = args;
}
}
export class WorkflowError extends Error {
args;
constructor(args){
super(args.message);
this.args = args;
}
}
/**
* Throw this error from within a task or workflow handler to cancel the job.
* Unlike failing a job (e.g. by throwing any other error), a cancelled job will not be retried.
*/ export class JobCancelledError extends Error {
constructor(message){
super(message);
}
}
//# sourceMappingURL=index.js.map