- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.batch.operations.BatchRuntimeException
-
- jakarta.batch.operations.JobExecutionAlreadyCompleteException
-
- All Implemented Interfaces:
java.io.Serializable
public class JobExecutionAlreadyCompleteException extends BatchRuntimeException
JobExecutionAlreadyCompleteException is thrown when restart is called for an already-completed job instance. I.e. whenJobOperator.restart(long, java.util.Properties)
is called, and the most recent job execution for the corresponding job instance has ended withBatchStatus
of COMPLETED.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description JobExecutionAlreadyCompleteException()
JobExecutionAlreadyCompleteException(java.lang.String message)
JobExecutionAlreadyCompleteException(java.lang.String message, java.lang.Throwable cause)
JobExecutionAlreadyCompleteException(java.lang.Throwable cause)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JobExecutionAlreadyCompleteException
public JobExecutionAlreadyCompleteException()
-
JobExecutionAlreadyCompleteException
public JobExecutionAlreadyCompleteException(java.lang.String message)
-
JobExecutionAlreadyCompleteException
public JobExecutionAlreadyCompleteException(java.lang.Throwable cause)
-
JobExecutionAlreadyCompleteException
public JobExecutionAlreadyCompleteException(java.lang.String message, java.lang.Throwable cause)
-
-