Package org.springframework.batch.core.step.skip

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

Related Classes of org.springframework.batch.core.step.skip.NonSkippableReadException

Copyright © 2018 www.massapicom. 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.