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

net.serenitybdd.core.exceptions.NoSuchElementException Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.serenitybdd.core.exceptions;

/**
 * I need {@link org.openqa.selenium.NoSuchElementException} that does
 * not include
 * {@link org.openqa.selenium.InvalidSelectorException}. See
 * issue
 * #2138 for discussion.
 * 
 * @author SiKing
 */
public class NoSuchElementException extends org.openqa.selenium.NoSuchElementException {

    private static final long serialVersionUID = 1L;

    public NoSuchElementException(String reason) {
	super(reason);
    }

    public NoSuchElementException(String reason, Throwable cause) {
	super(reason, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy