com.github.jsdevel.testng.selenium.exceptions.MissingPageFactoryException 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 to indicate that a {@link java.lang.reflect.Method} annotated with
* {@link org.testng.annotations.Test} was declared in a class that was missing
* {@link com.github.jsdevel.testng.selenium.PageFactory}.
*
* @author Joe Spencer
*/
public class MissingPageFactoryException extends RuntimeException {
public MissingPageFactoryException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy