n8n-io/n8n · error · RuntimeError
MEMORY_LIMIT
MEMORY_LIMIT
Error message
MEMORY_LIMIT
What it means
Error "MEMORY_LIMIT" thrown in n8n-io/n8n.
Source
Thrown at packages/@n8n/expression-runtime/src/types/runtime.ts:9
/**
* Runtime error thrown inside isolated context.
*
* These errors are thrown by the runtime code when something goes wrong during
* expression evaluation. The bridge must catch these and translate them to the
* appropriate ExpressionError subclass (see evaluator.ts).
*
* Translation mapping:
* - code: 'MEMORY_LIMIT' → MemoryLimitError
* - code: 'TIMEOUT' → TimeoutError
* - code: 'SECURITY_VIOLATION' → SecurityViolationError
* - code: 'SYNTAX_ERROR' → SyntaxError
* - other → ExpressionError
*/
export class RuntimeError extends Error {
constructor(
message: string,
public code: string,
public details?: Record<string, unknown>,
) {
super(message);
this.name = 'RuntimeError';
}
}
View on GitHub (pinned to 5ac6606e81)
When it happens
Trigger: Thrown at packages/@n8n/expression-runtime/src/types/runtime.ts:9 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of n8n-io/n8n@5ac6606e81 (2026-08-12).
Data as JSON: /api/errors/6a0875324d41dec9.
Report an issue: GitHub.