xref: /plugin/combo/vendor/php-webdriver/webdriver/lib/Exception/InvalidSessionIdException.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3namespace Facebook\WebDriver\Exception;
4
5/**
6 * Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist
7 * or that it’s not active.
8 */
9class InvalidSessionIdException extends WebDriverException
10{
11}
12