Skip to content

Fix erroneous javadoc in JobInstanceAlreadyExistsException #4933

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@
*/
package org.springframework.batch.core.launch;

import org.springframework.batch.core.job.Job;
import org.springframework.batch.core.job.JobInstance;
import org.springframework.batch.core.job.JobExecutionException;

/**
* Checked exception to indicate that a required {@link Job} is not available.
* Checked exception to indicate that a {@link JobInstance} already exists for the given
* job name and parameters. This exception is typically thrown when attempting to start a
* job that has already been executed with the same parameters.
*
* @author Dave Syer
* @author Mahmoud Ben Hassine
*
*/
public class JobInstanceAlreadyExistsException extends JobExecutionException {

Expand All @@ -36,6 +37,7 @@ public JobInstanceAlreadyExistsException(String msg) {
}

/**
* Create an exception with the given message and cause.
* @param msg the error message.
* @param e the cause of the exception.
*/
Expand Down