01: package liquibase.exception;
02:
03: public class CommandLineParsingException extends Exception {
04:
05: private static final long serialVersionUID = 1L;
06:
07: public CommandLineParsingException() {
08: }
09:
10: public CommandLineParsingException(String message) {
11: super (message);
12: }
13:
14: public CommandLineParsingException(String message, Throwable cause) {
15: super (message, cause);
16: }
17:
18: public CommandLineParsingException(Throwable cause) {
19: super(cause);
20: }
21: }
|