com.github.jsdevel.testng.selenium.exceptions.PageInitializationException 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} initialization
* if something went wrong.
*
* @author Joe Spencer
*/
public class PageInitializationException extends RuntimeException {
public PageInitializationException(String message) {
super(message);
}
public PageInitializationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy