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

liquibase.exception.ChangeNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy