com.clarolab.selenium.pages.exception.InvalidPageUrlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pages-framework Show documentation
Show all versions of pages-framework Show documentation
Framework for automated testing using Selenium. Provides easy configuration of WebDrivers with BrowserFactory. Provides a Page abstraction.
The newest version!
package com.clarolab.selenium.pages.exception;
public class InvalidPageUrlException extends RuntimeException {
public InvalidPageUrlException(String msg) {
super(msg);
}
public InvalidPageUrlException(String msg, Exception e) {
super(msg, e);
}
}