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

liquibase.exception.RollbackImpossibleException Maven / Gradle / Ivy

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

/**
 * Thrown if a change is encountered that cannot be rolled back.
 */
public class RollbackImpossibleException extends LiquibaseException {

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy