wtf.emulator.EmulatorWtfException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-api Show documentation
Show all versions of gradle-plugin-api Show documentation
With this Gradle plugin you can run your Android instrumentation tests with emulator.wtf
The newest version!
package wtf.emulator;
import org.gradle.api.GradleException;
public class EmulatorWtfException extends GradleException {
public EmulatorWtfException() {
super();
}
public EmulatorWtfException(String message) {
super(message);
}
public EmulatorWtfException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy