javax.batch.operations.exception.JobExecutionAlreadyCompleteException Maven / Gradle / Ivy
package javax.batch.operations.exception;
public class JobExecutionAlreadyCompleteException extends
BatchOperationsRuntimeException {
public JobExecutionAlreadyCompleteException(Throwable th,
String localizedMessage) {
super(th, localizedMessage);
// TODO Auto-generated constructor stub
}
public JobExecutionAlreadyCompleteException(Throwable th) {
super(th);
// TODO Auto-generated constructor stub
}
public JobExecutionAlreadyCompleteException(String localizedMessage) {
super(localizedMessage);
// TODO Auto-generated constructor stub
}
public JobExecutionAlreadyCompleteException() {
super();
// TODO Auto-generated constructor stub
}
}