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

com.github.markusbernhardt.seleniumlibrary.SeleniumLibraryNonFatalException Maven / Gradle / Ivy

There is a newer version: 4.0.0-alpha-2.0
Show newest version
package com.github.markusbernhardt.seleniumlibrary;

/**
 * A raised exception of this type marks the step as failed, but does not end
 * all test executions.
 */
@SuppressWarnings("serial")
public class SeleniumLibraryNonFatalException extends RuntimeException {

	/**
	 * Mark this exception as non fatal
	 */
	public static final boolean ROBOT_EXIT_ON_FAILURE = false;

	public SeleniumLibraryNonFatalException() {
		super();
	}

	public SeleniumLibraryNonFatalException(String string) {
		super(string);
	}

	public SeleniumLibraryNonFatalException(Throwable t) {
		super(t);
	}

	public SeleniumLibraryNonFatalException(String string, Throwable t) {
		super(string, t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy