PHP 8.0.30
Preview: Exception.php Size: 1.00 KB
/home/certprox/public_html/wpinst/wordpress/wp-includes/Requests/Exception.php

<?php
/**
 * Exception for HTTP requests
 *
 * @package Requests
 */

/**
 * Exception for HTTP requests
 *
 * @package Requests
 */
class Requests_Exception extends Exception {
	/**
	 * Type of exception
	 *
	 * @var string
	 */
	protected $type;

	/**
	 * Data associated with the exception
	 *
	 * @var mixed
	 */
	protected $data;

	/**
	 * Create a new exception
	 *
	 * @param string $message Exception message
	 * @param string $type Exception type
	 * @param mixed $data Associated data
	 * @param integer $code Exception numerical code, if applicable
	 */
	public function __construct($message, $type, $data = null, $code = 0) {
		parent::__construct($message, $code);

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

	/**
	 * Like {@see getCode()}, but a string code.
	 *
	 * @codeCoverageIgnore
	 * @return string
	 */
	public function getType() {
		return $this->type;
	}

	/**
	 * Gives any relevant data
	 *
	 * @codeCoverageIgnore
	 * @return mixed
	 */
	public function getData() {
		return $this->data;
	}
}

Directory Contents

Dirs: 7 × Files: 13

Name Size Perms Modified Actions
Auth DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Cookie DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Exception DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Proxy DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Response DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Transport DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
Utility DIR
- drwxr-xr-x 2022-11-15 19:03:29
Edit Download
810 B lrw-r--r-- 2021-12-06 21:30:03
Edit Download
12.73 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
1.00 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
709 B lrw-r--r-- 2021-12-06 21:30:03
Edit Download
1.37 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
11.28 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
4.89 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
27.88 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
813 B lrw-r--r-- 2021-12-06 21:30:03
Edit Download
2.46 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
7.00 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
3.72 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download
1.19 KB lrw-r--r-- 2021-12-06 21:30:03
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).