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);
	}

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_exception_http_unknown/__construct