io.github.kgress.scaffold.exception.WebDriverContextException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Core components for Scaffold
package io.github.kgress.scaffold.exception;
public class WebDriverContextException extends RuntimeException {
private static final long serialVersionUID = 5553101862609859L;
public WebDriverContextException(String message) {
super(message);
}
public WebDriverContextException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy