Examples of UncheckedTransactionException


Examples of org.springframework.batch.core.step.tasklet.UncheckedTransactionException

  @Override
  public void beforeChunk(ChunkContext context) {
    try {
      delegate.beforeChunk();
    } catch (Exception e) {
      throw new UncheckedTransactionException(e);
    }
  }
View Full Code Here

Examples of org.springframework.batch.core.step.tasklet.UncheckedTransactionException

  @Override
  public void afterChunk(ChunkContext context) {
    try {
      delegate.afterChunk();
    } catch (Exception e) {
      throw new UncheckedTransactionException(e);
    }
  }
View Full Code Here

Examples of org.springframework.batch.core.step.tasklet.UncheckedTransactionException

  public void afterChunkError(ChunkContext context) {
    if(context != null) {
      try {
        delegate.onError((Exception) context.getAttribute(ChunkListener.ROLLBACK_EXCEPTION_KEY));
      } catch (Exception e) {
        throw new UncheckedTransactionException(e);
      }
    } else {
      throw new BatchRuntimeException("Unable to retrieve causing exception due to null ChunkContext");
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.