X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Finstaclick%2Fphp-webdriver%2Flib%2FWebDriver%2FException%2FCurlExec.php;fp=vendor%2Finstaclick%2Fphp-webdriver%2Flib%2FWebDriver%2FException%2FCurlExec.php;h=0000000000000000000000000000000000000000;hp=29c15cbe16914c6f410bc115eab22107645339e6;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/instaclick/php-webdriver/lib/WebDriver/Exception/CurlExec.php b/vendor/instaclick/php-webdriver/lib/WebDriver/Exception/CurlExec.php deleted file mode 100644 index 29c15cbe1..000000000 --- a/vendor/instaclick/php-webdriver/lib/WebDriver/Exception/CurlExec.php +++ /dev/null @@ -1,59 +0,0 @@ - - * @author Anthon Pang - * @author Gaetano Giunta - */ - -namespace WebDriver\Exception; - -use WebDriver\Exception as BaseException; - -/** - * WebDriver\Exception\CurlExec class - * - * @package WebDriver - */ -final class CurlExec extends BaseException -{ - /** - * @var array - */ - private $curlInfo = array(); - - /** - * {@inheritdoc} - */ - public function __construct($message = null, $code = 0, \Exception $previous = null, $curlInfo = array()) - { - parent::__construct($message, $code, $previous); - - $this->curlInfo = $curlInfo; - } - - /** - * Get curl info - * - * @return array - */ - public function getCurlInfo() - { - return $this->curlInfo; - } -}