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

Create a new exception


Description Description


Parameters 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


Top ↑

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


Top ↑

User Contributed Notes User Contributed Notes

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