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