mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 00:37:10 +02:00
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { UnexpectedError } from 'n8n-workflow';
|
|
|
|
export class UnknownExecutionModeError extends UnexpectedError {
|
|
constructor(mode: string) {
|
|
super('Unknown execution mode', { extra: { mode } });
|
|
}
|
|
}
|