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

com.github.jsdevel.testng.selenium.exceptions.PageInstantiationException Maven / Gradle / Ivy

There is a newer version: 0.11.2
Show newest version
package com.github.jsdevel.testng.selenium.exceptions;

/**
 * Thrown during {@link com.github.jsdevel.testng.selenium.Page} instantiation
 * if something went wrong.
 * 
 * @author Joe Spencer
 */
public class PageInstantiationException extends RuntimeException {
  public PageInstantiationException(String message) {
    super(message);
  }

  public PageInstantiationException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy