com.github.markusbernhardt.selenium2library.Selenium2LibraryFatalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework-selenium2library-java Show documentation
Show all versions of robotframework-selenium2library-java Show documentation
Java port of the Selenium 2 (WebDriver) Python library for Robot Framework
package com.github.markusbernhardt.selenium2library;
/**
* A raised exception of this type ends all test executions.
*/
@SuppressWarnings("serial")
public class Selenium2LibraryFatalException extends RuntimeException {
/**
* Mark this exception as fatal
*/
public static final boolean ROBOT_EXIT_ON_FAILURE = true;
public Selenium2LibraryFatalException() {
super();
}
public Selenium2LibraryFatalException(String string) {
super(string);
}
public Selenium2LibraryFatalException(Throwable t) {
super(t);
}
public Selenium2LibraryFatalException(String string, Throwable t) {
super(string, t);
}
}