All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.exception.InvalidChangeDefinitionException Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.exception;

import liquibase.change.Change;
import liquibase.change.ChangeFactory;

public class InvalidChangeDefinitionException extends LiquibaseException {

    public InvalidChangeDefinitionException(String message, Change change) {
        super(ChangeFactory.getInstance().getChangeMetaData(change).getName()+" in '"+change.getChangeSet().toString(false)+"' is invalid: "+message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy