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

liquibase.command.CommandFailedException Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy