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

net.thucydides.core.steps.InvalidManagedPagesFieldException Maven / Gradle / Ivy

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

/**
 * Thrown if no suitable WebDriver field with the @Managed annotation is found in a test.
 * 
 * @author johnsmart
 *
 */
public class InvalidManagedPagesFieldException extends RuntimeException {

    private static final long serialVersionUID = -7552399074205295160L;

    public InvalidManagedPagesFieldException(final String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy