n8n/packages/cli/src/errors/workflow-crashed.error.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
211 B
TypeScript
Raw Normal View History

import { WorkflowOperationError } from 'n8n-workflow';
export class WorkflowCrashedError extends WorkflowOperationError {
constructor() {
super('Workflow did not finish, possible out-of-memory issue');
}
}