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

org.bithill.selenium.driver.DriverInitializationException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package org.bithill.selenium.driver;

import java.util.Map;

/**
 * Signals that an driver exception of some sort has occurred.
 *
 * This is supposed to be root class for all of exceptions produced by
 * {@link WebDriverHandleFactory#createDriverHandle(Map) driver factory's create method}.
 *
 * If this Exception is thrown in a reaction to another exception, the original exception MUST be always included,
 * i.e. a constructor with cause has to be used.
 */
public class DriverInitializationException extends RuntimeException {

    static final long serialVersionUID = 1L;

    public DriverInitializationException() { super(); }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy