mirror of
https://github.com/n8n-io/n8n.git
synced 2026-09-01 15:47:41 +08:00
9729c2a5da
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
472 B
TypeScript
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;
|
|
}
|
|
}
|