liquibase.exception.SetupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
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.
*
*/
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);
}
}