24 lines
363 B
PHP
24 lines
363 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2013 Anthon Pang
|
|
* @license Apache-2.0
|
|
*
|
|
* @package WebDriver
|
|
*
|
|
* @author Anthon Pang <apang@softwaredevelopment.ca>
|
|
*/
|
|
|
|
namespace WebDriver\Exception;
|
|
|
|
use WebDriver\Exception as BaseException;
|
|
|
|
/**
|
|
* WebDriver\Exception\SessionNotCreated class
|
|
*
|
|
* @package WebDriver
|
|
*/
|
|
final class SessionNotCreated extends BaseException
|
|
{
|
|
}
|