Package javax.batch.operations
Class JobExecutionAlreadyCompleteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.batch.operations.BatchRuntimeException
-
- javax.batch.operations.JobExecutionAlreadyCompleteException
-
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
-
-
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)
-
-
-
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)
-
-