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

net.serenitybdd.core.pages.UnableToInvokeWhenPageOpensMethods Maven / Gradle / Ivy

package net.serenitybdd.core.pages;

/**
 * Could not invoke a Page Oject method annotated with the WhenPageOpens annotation.
 */
public class UnableToInvokeWhenPageOpensMethods extends RuntimeException {
    public UnableToInvokeWhenPageOpensMethods(String message, Throwable cause) {
        super(message,cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy