![JAR search and dependency download from the Maven repository](/logo.png)
org.bithill.selenium.resolving.InvalidPageException 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 an the expected page is not loaded, regardless if a wrong page is
* or no page is loaded at all.
*/
public class InvalidPageException extends RuntimeException
{
public InvalidPageException ()
{
super();
}
public InvalidPageException (String message)
{
super(message);
}
public InvalidPageException (Throwable cause)
{
super(cause);
}
public InvalidPageException (String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy