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

liquibase.exception.CommandExecutionException Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
package liquibase.exception;

public class CommandExecutionException extends LiquibaseException {
    private static final long serialVersionUID = -2115326810859901171L;

    public CommandExecutionException(Throwable cause) {
        super(cause);
    }

    public CommandExecutionException(String message) {
        super(message);
    }

    public CommandExecutionException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy