I am using ubuntu 14.0 lts. My java version is java version "1.8.0_111". I am getting this error while running the following code.
package wrangler;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class BrowserInvocation {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.gecko.driver", "/home/arima/geckodriver.exe");
WebDriver driver = new FirefoxDriver();
}
}