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

org.arquillian.drone.browserstack.extension.local.BrowserStackLocalException Maven / Gradle / Ivy

There is a newer version: 3.0.0-alpha.8
Show newest version
package org.arquillian.drone.browserstack.extension.local;

/**
 * Throws when something bad happens during running BrowserStackLocal binary
 *
 * @author Matous Jobanek
 */
public class BrowserStackLocalException extends RuntimeException{

    public BrowserStackLocalException() {
        super();
    }

    public BrowserStackLocalException(String message, Throwable cause) {
        super(message, cause);
    }

    public BrowserStackLocalException(String message) {
        super(message);
    }

    public BrowserStackLocalException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy