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

io.magentys.cinnamon.webdriver.locators.LocatorException Maven / Gradle / Ivy

package io.magentys.cinnamon.webdriver.locators;

@SuppressWarnings("serial")
public class LocatorException extends RuntimeException {
    public LocatorException(String string) {
        super(string);
    }

    public LocatorException(Throwable cause) {
        super(cause);
    }

    public LocatorException(String string, Throwable cause) {
        super(string, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy