From 30d6e80af7145edb6e7db84a40687c58ed20cdb5 Mon Sep 17 00:00:00 2001 From: robokaso Date: Wed, 19 Mar 2008 12:31:08 +0000 Subject: [PATCH] REOPENED - issue BATCH-472: Exceeding the start limit on a step will cause a vague exception type to be thrown. http://jira.springframework.org/browse/BATCH-472 added throws StartLimitExceedException to SimpleJob#execute(..) javadoc --- .../main/java/org/springframework/batch/core/job/SimpleJob.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/job/SimpleJob.java b/spring-batch-core/src/main/java/org/springframework/batch/core/job/SimpleJob.java index ec68557a4..e024357cf 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/job/SimpleJob.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/job/SimpleJob.java @@ -75,6 +75,7 @@ public class SimpleJob extends AbstractJob { * {@link Step}. * * @see org.springframework.batch.core.Job#execute(org.springframework.batch.core.JobExecution) + * @throws StartLimitExceededException if start limit of one of the steps was exceeded */ public void execute(JobExecution execution) throws JobExecutionException {