1 package org.springframework.batch.core;
2
3 /**
4 * Exception for {@link Job} to signal that some {@link JobParameters} are
5 * invalid.
6 *
7 * @author Dave Syer
8 *
9 */
10 public class JobParametersInvalidException extends JobExecutionException {
11
12 public JobParametersInvalidException(String msg) {
13 super(msg);
14 }
15
16 }