aec3094
1
2
3
4
5
6
7
8
import { WorkflowOperationError } from 'n8n-workflow'; export class WorkflowCrashedError extends WorkflowOperationError { constructor() { super('Workflow did not finish, possible out-of-memory issue'); } }