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

liquibase.exception.ExitCodeException Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy