com.saucelabs.saucebindings.SauceSessionNotStartedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sauce_bindings Show documentation
Show all versions of sauce_bindings Show documentation
Java library which provides tools for interacting with Sauce Labs
The newest version!
package com.saucelabs.saucebindings;
public class SauceSessionNotStartedException extends RuntimeException {
/**
* Some methods will not do anything if a Sauce session has not been started.
*
* @param message the name of the method that requires the session to be started
*/
public SauceSessionNotStartedException(String message) {
super("Session must be started before executing " + message);
}
}