com.browserstack.automate.exception.SessionNotFound Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automate-client-java Show documentation
Show all versions of automate-client-java Show documentation
Java bindings for BrowserStack Automate REST API
The newest version!
package com.browserstack.automate.exception;
import com.browserstack.client.exception.BrowserStackObjectNotFound;
public class SessionNotFound extends BrowserStackObjectNotFound {
/**
*
* @param msg error string for session not found.
*/
public SessionNotFound(String msg) {
super(msg);
}
}