Files
farmOS-dev/vendor/instaclick/php-webdriver/lib/WebDriver/Exception/CurlExec.php
2024-12-10 15:08:16 +01:00

48 lines
723 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\CurlExec class
*
* @package WebDriver
*/
final class CurlExec extends BaseException
{
/**
* @var array
*/
private $curlInfo = array();
/**
* Get curl info
*
* @return array
*/
public function getCurlInfo()
{
return $this->curlInfo;
}
/**
* Set curl info
*
* @param array $curlInfo
*/
public function setCurlInfo($curlInfo)
{
$this->curlInfo = $curlInfo;
}
}