com.chavaillaz.browser.exception.BrowserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automated-browser Show documentation
Show all versions of automated-browser Show documentation
Library to automate a browser for multiple purposes
package com.chavaillaz.browser.exception;
public class BrowserException extends RuntimeException {
public BrowserException() {
super();
}
public BrowserException(String message) {
super(message);
}
public BrowserException(String message, Throwable cause) {
super(message, cause);
}
public BrowserException(Throwable cause) {
super(cause);
}
}