View Javadoc
1   package de.larssh.jes.parser;
2   
3   import de.larssh.utils.text.Strings;
4   
5   /**
6    * Thrown to indicate that parsing the JES job list failed.
7    */
8   public class JesFtpFileEntryParserException extends RuntimeException {
9   	/**
10  	 * Constructs a new {@link JesFtpFileEntryParserException} with the given
11  	 * message, formatting as described at
12  	 * {@link Strings#format(String, Object...)}.
13  	 *
14  	 * @param message   the detail message
15  	 * @param arguments arguments referenced by format specifiers in {@code message}
16  	 */
17  	public JesFtpFileEntryParserException(final String message, final Object... arguments) {
18  		super(Strings.format(message, arguments), null);
19  	}
20  }