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

org.fluentlenium.utils.chromium.ChromiumApiNotSupportedException Maven / Gradle / Ivy

package org.fluentlenium.utils.chromium;

/**
 * Exception for when the chromium api is not supported by browser.
 */
public class ChromiumApiNotSupportedException extends RuntimeException {
    public ChromiumApiNotSupportedException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy