Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

CurlExec.php

Namespace

WebDriver\Exception

File

vendor/lullabot/php-webdriver/lib/WebDriver/Exception/CurlExec.php

View source
<?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;
    }

}

Classes

Title Deprecated Summary
CurlExec WebDriver\Exception\CurlExec class
RSS feed
Powered by Drupal