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

liquibase.exception.SetupException Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy