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

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


            }
            else {
              // If it's not skippable that's an error in
              // configuration - it doesn't make sense to not roll
              // back if we are also not allowed to skip
              throw new NonSkippableProcessException(
                  "Non-skippable exception in processor.  Make sure any exceptions that do not cause a rollback are skippable.",
                  e);
            }
          }
          if (output == null) {
View Full Code Here

TOP

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

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.