Used By
Used By | Description |
---|---|
wp-includes/Requests/Transport/cURL.php: Requests_Transport_cURL::request_multiple() | Send multiple requests simultaneously |
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); }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_exception_transport_curl/__construct