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

liquibase.exception.UnsupportedChecksumVersionException Maven / Gradle / Ivy

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

import liquibase.util.LiquibaseUtil;

public class UnsupportedChecksumVersionException extends RuntimeException {

    private static final long serialVersionUID = -229400973681987065L;

    public UnsupportedChecksumVersionException(int i) {
        super(String.format("Liquibase detected an unknown checksum calculation version %s. This can be caused by a previous " +
                        "operation on this changelog with a newer version than your current %S release. ",
                 i, LiquibaseUtil.getBuildVersionInfo()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy