Requests_Exception_HTTP_Unknown::__construct( string|null $reason = null, mixed $data = null )

Create a new exception


Description Description

If $data is an instance of Requests_Response, uses the status code from it. Otherwise, sets as 0


Parameters Parameters

$reason

(string|null) (Optional) Reason phrase

Default value: null

$data

(mixed) (Optional) Associated data

Default value: null


Top ↑

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


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.