mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 09:17:08 +02:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class ExecutionNotFoundError extends ApplicationError {
|
|
constructor(executionId: string) {
|
|
super('No active execution found', { extra: { executionId } });
|
|
}
|
|
}
|