liquibase.exception.ChangeNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.exception;
import liquibase.database.Database;
public class ChangeNotFoundException extends LiquibaseException {
private static final long serialVersionUID = 3148141590098779029L;
public ChangeNotFoundException(String name, Database database) {
super("Change '"+name+"' not found or supported for "+database);
}
}