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

liquibase.exception.DatabaseException Maven / Gradle / Ivy

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

public class DatabaseException extends LiquibaseException {

    private static final long serialVersionUID = 1L;
    
    public DatabaseException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy