n8n/packages/@n8n/ai-workflow-builder.ee/evaluations/errors.ts
Mutasem Aldmour 76f52b0988
feat(ai-builder): Add code-base workflow builder and related changes
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 07:32:04 +01:00

15 lines
472 B
TypeScript

/**
* Custom error class for workflow generation failures that preserves captured logs.
* When the code agent fails to produce a workflow, this error carries the logs
* that were captured during execution, allowing them to be saved to disk for debugging.
*/
export class WorkflowGenerationError extends Error {
readonly logs?: string;
constructor(message: string, logs?: string) {
super(message);
this.name = 'WorkflowGenerationError';
this.logs = logs;
}
}