n8n
Version:
n8n Workflow Automation Tool
13 lines • 523 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbortedExecutionRetryError = void 0;
const n8n_workflow_1 = require("n8n-workflow");
class AbortedExecutionRetryError extends n8n_workflow_1.ApplicationError {
constructor() {
super('The execution was aborted before starting, so it cannot be retried', {
level: 'warning',
});
}
}
exports.AbortedExecutionRetryError = AbortedExecutionRetryError;
//# sourceMappingURL=aborted-execution-retry.error.js.map
;