8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import { ApplicationError } from 'n8n-workflow';
|
|
|
|
export class MissingExecutionStopError extends ApplicationError {
|
|
constructor(executionId: string) {
|
|
super('Failed to find execution to stop', { extra: { executionId } });
|
|
}
|
|
}
|