liquibase.command.CommandFailedException 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.command;
public class CommandFailedException extends Exception {
private final CommandResults results;
private final int exitCode;
public CommandFailedException(CommandResults results, int exitCode, String message) {
super(message);
this.results = results;
this.exitCode = exitCode;
}
public CommandResults getResults() {
return results;
}
public int getExitCode() {
return exitCode;
}
}