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.Scope;
import liquibase.change.Change;
import liquibase.change.ChangeFactory;

public class InvalidChangeDefinitionException extends LiquibaseException {
    
    private static final long serialVersionUID = -429400803681987065L;
    
    public InvalidChangeDefinitionException(String message, Change change) {
        super(Scope.getCurrentScope().getSingleton(ChangeFactory.class).getChangeMetaData(change).getName()+" in '"+change.getChangeSet().toString(false)+"' is invalid: "+message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy