mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-28 15:27:03 +02:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
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`.');
|
|
}
|
|
}
|