![JAR search and dependency download from the Maven repository](/logo.png)
org.bithill.selenium.resolving.InvalidLocatorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aport Show documentation
Show all versions of aport Show documentation
web UI testing made easier
package org.bithill.selenium.resolving;
/** Thrown when the locator used in {@link ResolveBy} annotation is not recognized as valid locator.
* Does not apply to well-formed locator matching no node.
*/
public class InvalidLocatorException extends RuntimeException
{
public InvalidLocatorException ()
{
super();
}
public InvalidLocatorException (String message)
{
super(message);
}
public InvalidLocatorException (Throwable cause)
{
super(cause);
}
public InvalidLocatorException (String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy