org.liquibase.gradle.LiquibaseConfigurationException.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-gradle-plugin Show documentation
Show all versions of liquibase-gradle-plugin Show documentation
A Gradle plugin for running the Liquibase database upgrade tool.
package org.liquibase.gradle
import org.gradle.api.GradleException
/**
* Custom Gradle exception thrown by the plugin when the plugin hasn't been
* configured correctly.
*
* @author Steven C. Saliman
*/
class LiquibaseConfigurationException extends GradleException {
LiquibaseConfigurationException(String msg) {
super(msg)
}
}