Requests_Exception_HTTP_Unknown::__construct() WordPress Method
The Requests_Exception_HTTP_Unknown::__construct() method is used to create an exception for when an unknown HTTP status code is returned. This can happen when the server returns a status code that is not recognized by the Requests library.
Requests_Exception_HTTP_Unknown::__construct( string|null $reason = null, mixed $data = null ) #
Create a new exception
Description
If $data
is an instance of Requests_Response, uses the status code from it. Otherwise, sets as 0
Parameters
- $reason
(string|null)(Optional)Reason phrase
Default value: null
- $data
(mixed)(Optional)Associated data
Default value: null
Source
File: wp-includes/Requests/Exception/HTTP/Unknown.php
public function __construct($reason = null, $data = null) { if ($data instanceof Requests_Response) { $this->code = $data->status_code; } parent::__construct($reason, $data); }
Expand full source codeCollapse full source codeView on TracView on GitHub