mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00: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`.');
|
|
}
|
|
}
|