View Javadoc

1   package liquibase.exception;
2   
3   public class DatabaseHistoryException extends LiquibaseException {
4   
5       private static final long serialVersionUID = 1L;
6   
7       public DatabaseHistoryException(String message) {
8           super(message);
9       }
10  
11      public DatabaseHistoryException(String message, Throwable cause) {
12          super(message, cause);
13      }
14  }