mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 02:07:06 +02:00
11 lines
273 B
TypeScript
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 },
|
|
});
|
|
}
|
|
}
|