DatabaseHistoryException.java :  » Database-Client » LiquiBase » liquibase » exception » Java Open Source

Java Open Source » Database Client » LiquiBase 
LiquiBase » liquibase » exception » DatabaseHistoryException.java
package liquibase.exception;

public class DatabaseHistoryException extends LiquibaseException {

    private static final long serialVersionUID = 1L;    

    public DatabaseHistoryException(String message) {
        super(message);
    }

    public DatabaseHistoryException(String message, Throwable cause) {
        super(message, cause);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.