com.github.jsdevel.testng.selenium.exceptions.PageInstantiationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng-selenium Show documentation
Show all versions of testng-selenium Show documentation
A library for easy TestNG Selenium testing.
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