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

org.fluentlenium.core.events.ExceptionListener Maven / Gradle / Ivy

package org.fluentlenium.core.events;

import org.openqa.selenium.WebDriver;

/**
 * Listen to exceptions.
 */
public interface ExceptionListener {

    /**
     * Called when an exception is thrown.
     *
     * @param throwable thrown exception
     * @param driver    selenium driver
     */
    void on(Throwable throwable, WebDriver driver); // NOPMD ShortMethodName
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy