mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-18 10:57:20 +02:00
67fb6d6fdd
Co-authored-by: Danny Martini <danny@n8n.io>
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 } });
|
|
}
|
|
}
|