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