Requests_Exception_Transport_cURL::__construct() WordPress Method
The cURL transport for Requests_Exception uses the libcurl library to handle exception errors. If an error occurs during a request, this transport will attempt to find the best error message and code from the libcurl library.
Requests_Exception_Transport_cURL::__construct( $message, $type, $data = null, $code ) #
Source
File: wp-includes/Requests/Exception/Transport/cURL.php
public function __construct($message, $type, $data = null, $code = 0) { if ($type !== null) { $this->type = $type; } if ($code !== null) { $this->code = $code; } if ($message !== null) { $this->reason = $message; } $message = sprintf('%d %s', $this->code, $this->reason); parent::__construct($message, $this->type, $data, $this->code); }
Expand full source codeCollapse full source codeView on TracView on GitHub