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

com.github.webdriverextensions.InstallDriversMojoExecutionException Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
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