01: package liquibase.exception;
02:
03: public class DatabaseHistoryException extends LiquibaseException {
04:
05: private static final long serialVersionUID = 1L;
06:
07: public DatabaseHistoryException(String message) {
08: super (message);
09: }
10:
11: public DatabaseHistoryException(String message, Throwable cause) {
12: super(message, cause);
13: }
14: }
|