PHP 8.3.30
Preview: Exception.php Size: 1.00 KB
/var/softaculous/sitepad/editor/site-inc/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 2026-04-20 17:49:27
Edit Download
Cookie DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
Exception DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
Proxy DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
Response DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
Transport DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
Utility DIR
- drwxr-xr-x 2026-04-20 17:49:27
Edit Download
810 B lrw-r--r-- 2026-04-20 08:20:34
Edit Download
12.55 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
1.00 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
708 B lrw-r--r-- 2026-04-20 08:20:34
Edit Download
1.37 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
11.06 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
4.81 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
27.80 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
813 B lrw-r--r-- 2026-04-20 08:20:34
Edit Download
2.45 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
6.99 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
3.93 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download
1.19 KB lrw-r--r-- 2026-04-20 08:20:34
Edit Download

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