From 375a8d26730b2a8b7d76dcd274ea5266be19cf74 Mon Sep 17 00:00:00 2001 From: jinwook han Date: Sun, 15 Mar 2020 18:38:36 +0900 Subject: [PATCH] fix documentation of JobExecutionNotRunningException execution -> checked exception --- .../batch/core/launch/JobExecutionNotRunningException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/launch/JobExecutionNotRunningException.java b/spring-batch-core/src/main/java/org/springframework/batch/core/launch/JobExecutionNotRunningException.java index a068b5a2ee..f2aa6d5276 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/launch/JobExecutionNotRunningException.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/launch/JobExecutionNotRunningException.java @@ -18,7 +18,7 @@ import org.springframework.batch.core.JobExecutionException; /** - * Execution indicating that a JobExecution that is not currently running has + * Checked exception indicating that a JobExecution that is not currently running has * been requested to stop. * * @author Dave Syer