Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Code/native-python-without-runner.error.ts

8 lines
221 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
import { UserError } from 'n8n-workflow';
export class NativePythonWithoutRunnerError extends UserError {
constructor() {
super('To use native Python, please use runners by setting `N8N_RUNNERS_ENABLED=true`.');
}
}