liquibase.exception.PreconditionFailedException 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.changelog.DatabaseChangeLog;
import liquibase.precondition.FailedPrecondition;
import liquibase.precondition.Precondition;
import java.util.ArrayList;
import java.util.List;
/**
* Thrown when a precondition failed. This is NOT the same as a PreconditionErrorException: A failure just means that
* the specified condition evaluated to "does not apply".
*/
public class PreconditionFailedException extends Exception {
private static final long serialVersionUID = 1L;
private final List failedPreconditions;
public PreconditionFailedException(String message, DatabaseChangeLog changeLog, Precondition precondition) {
this(new FailedPrecondition(message, changeLog, precondition));
}
public PreconditionFailedException(FailedPrecondition failedPrecondition) {
super("Preconditions Failed");
this.failedPreconditions = new ArrayList<>();
failedPreconditions.add(failedPrecondition);
}
public PreconditionFailedException(List failedPreconditions) {
super("Preconditions Failed");
this.failedPreconditions = failedPreconditions;
}
public List getFailedPreconditions() {
return failedPreconditions;
}
}