Examples of NonSkippableReadException


Examples of org.springframework.batch.core.step.skip.NonSkippableReadException

          logger.debug("Skipping failed input", e);
        }
        else {
          if (rollbackClassifier.classify(e)) {
            throw new NonSkippableReadException("Non-skippable exception during read", e);
          }
          logger.debug("No-rollback for non-skippable exception (ignored)", e);
        }

      }
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.