Files
n8n-enterprise-unlocked/packages/workflow/src/errors/execution-cancelled.error.ts
T

11 lines
273 B
TypeScript

import { ExecutionBaseError } from './abstract/execution-base.error';
export class ExecutionCancelledError extends ExecutionBaseError {
constructor(executionId: string) {
super('The execution was cancelled', {
level: 'warning',
extra: { executionId },
});
}
}