Requests_Exception_Transport_cURL::__construct()

最后更新于:2021-11-26 02:57:19

Requests_Exception_Transport_cURL::__construct($message, $type, $data=null, $code)

源文件

文件: gc-includes/Requests/Exception/Transport/cURL.php

	public function __construct($message, $type, $data = null, $code = 0) {
		if ($type !== null) {
			$this->type = $type;
		}

		if ($code !== null) {
			$this->code = $code;
		}

		if ($message !== null) {
			$this->reason = $message;
		}

		$message = sprintf('%d %s', $this->code, $this->reason);
		parent::__construct($message, $this->type, $data, $this->code);
	}