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

liquibase.exception.LiquibaseException Maven / Gradle / Ivy

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

/**
 * Base class for all Liquibase exceptions.
 */
public class LiquibaseException extends Exception{

    private static final long serialVersionUID = 1L;

    public LiquibaseException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy