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

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

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

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

    private static final long serialVersionUID = -7552399074205295160L;

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

    public InvalidManagedWebDriverFieldException(final String message, final Throwable e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy