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

org.bithill.selenium.resolving.InvalidPageException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
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