com.github.webdriverextensions.InstallDriversMojoExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdriverextensions-maven-plugin Show documentation
Show all versions of webdriverextensions-maven-plugin Show documentation
Use this plugin to manage, download and install WebDriver drivers directly from your pom.
package com.github.webdriverextensions;
import org.apache.maven.plugin.MojoExecutionException;
public class InstallDriversMojoExecutionException extends MojoExecutionException {
public InstallDriversMojoExecutionException(String message) {
super(message);
}
public InstallDriversMojoExecutionException(String message, Exception cause) {
super(message, cause);
}
public InstallDriversMojoExecutionException(String message, InstallDriversMojo mojo, Driver driver) {
this(message + Utils.debugInfo(mojo, driver));
}
public InstallDriversMojoExecutionException(String message, Exception cause, InstallDriversMojo mojo, Driver driver) {
this(message + Utils.debugInfo(mojo, driver), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy