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

net.thucydides.core.annotations.NotImplementedException Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package net.thucydides.core.annotations;

/**
 * Thrown when there is an implementation error of WebElementFacade extension
 * 
 * @author Alex Okrushko
 *
 */
public class NotImplementedException extends RuntimeException {

	private static final long serialVersionUID = 870167953834215097L;
	
	public NotImplementedException(final String message) {
        super(message);
    }

    public NotImplementedException(final String message, final IllegalAccessException cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy