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

liquibase.exception.UnexpectedLiquibaseException Maven / Gradle / Ivy

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

public class UnexpectedLiquibaseException extends RuntimeException {
    public UnexpectedLiquibaseException(String message) {
        super(message);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy