liquibase.exception.ExitCodeException 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.
The newest version!
package liquibase.exception;
/**
* This interface marks an exception as one which can specify the exit code that Liquibase should use if an exception
* which implements this interface is thrown.
*/
public interface ExitCodeException {
default Integer getExitCode() {
return null;
}
}