1 package org.kohsuke.args4j;
2
3 /***
4 * Signals an error in the user input.
5 *
6 * @author Kohsuke Kawaguchi
7 */
8 public class CmdLineException extends Exception {
9 public CmdLineException(String message) {
10 super(message);
11 }
12
13 public CmdLineException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public CmdLineException(Throwable cause) {
18 super(cause);
19 }
20 }