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

com.saucelabs.saucebindings.SauceSessionNotStartedException Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy