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

dev.gradleplugins.runnerkit.InvalidRunnerConfigurationException Maven / Gradle / Ivy

The newest version!
package dev.gradleplugins.runnerkit;

/**
 * Thrown when a build cannot be executed due to the runner being in an invalid state.
 *
 * @see GradleRunner#build()
 * @see GradleRunner#buildAndFail()
 */
public final class InvalidRunnerConfigurationException extends IllegalStateException {
    public InvalidRunnerConfigurationException(String s) {
        super(s);
    }

    public InvalidRunnerConfigurationException(String s, RuntimeException e) {
        super(s, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy