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

com.polonium.core.exceptions.PoloniumException Maven / Gradle / Ivy

Go to download

Polonium-Webdriver extends polonium core with paging functionality (page-object pattern), and handles/recognizes fails made by selenium driver. This version has Polonium-Core included.

There is a newer version: 1.2.0.RC1
Show newest version
package com.polonium.core.exceptions;

/** Father-marker for exceptions that are recognized by polonium test runner
 *  
 * @author Marek Serwanski
 */
public class PoloniumException extends RuntimeException{
	private static final long serialVersionUID = 1L;

	public PoloniumException(String message) {
		super(message);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy