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

liquibase.exception.SetupException Maven / Gradle / Ivy

package liquibase.exception;

/**
 * If there is an error with setting up a Change this Exception
 * will be thrown.
 * 
 * A message must always be provided, if none is then the message
 * from the cause exception will be used.
 * 
 * @author Paul Keeble
 *
 */
public class SetupException extends LiquibaseException {

    private static final long serialVersionUID = 1L;

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

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

    public SetupException(Throwable cause) {
        super(cause.getMessage(),cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy