n8n
Version:
n8n Workflow Automation Tool
11 lines • 476 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueuedExecutionRetryError = void 0;
const n8n_workflow_1 = require("n8n-workflow");
class QueuedExecutionRetryError extends n8n_workflow_1.UnexpectedError {
constructor() {
super('Execution is queued to run (not yet started) so it cannot be retried');
}
}
exports.QueuedExecutionRetryError = QueuedExecutionRetryError;
//# sourceMappingURL=queued-execution-retry.error.js.map
;