Requests_Exception::__construct( string $message, string $type, mixed $data = null, integer $code )

Create a new exception

Parameters

$message

(string) (Required) Exception message

$type

(string) (Required) Exception type

$data

(mixed) (Optional) Associated data

Default value: null

$code

(integer) (Required) Exception numerical code, if applicable

Source

File: wp-includes/Requests/Exception.php

public function __construct($message, $type, $data = null, $code = 0) {
		parent::__construct($message, $code);

		$this->type = $type;
		$this->data = $data;
	}

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