File size: 521 Bytes
aec3094 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import type { INode } from 'n8n-workflow';
import { NodeOperationError } from 'n8n-workflow';
export class NodeCrashedError extends NodeOperationError {
constructor(node: INode) {
super(node, 'Node crashed, possible out-of-memory issue', {
message: 'Execution stopped at this node',
description:
"n8n may have run out of memory while running this execution. More context and tips on how to avoid this <a href='https://docs.n8n.io/hosting/scaling/memory-errors/' target='_blank'>in the docs</a>",
});
}
}
|