⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.139
Server IP:
44.234.190.86
Server:
Linux ip-172-31-55-191 5.4.0-1060-aws #63~18.04.1-Ubuntu SMP Mon Nov 15 14:31:31 UTC 2021 x86_64
Server Software:
Apache/2.4.29 (Ubuntu)
PHP Version:
7.0.33-30+ubuntu18.04.1+deb.sury.org+1
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
wp-includes
/
Requests
/
Exception
/
View File Name :
HTTP.php
reason = $reason; } $message = sprintf('%d %s', $this->code, $this->reason); parent::__construct($message, 'httpresponse', $data, $this->code); } /** * Get the status message */ public function getReason() { return $this->reason; } /** * Get the correct exception class for a given error code * * @param int|bool $code HTTP status code, or false if unavailable * @return string Exception class name to use */ public static function get_class($code) { if (!$code) { return 'Requests_Exception_HTTP_Unknown'; } $class = sprintf('Requests_Exception_HTTP_%d', $code); if (class_exists($class)) { return $class; } return 'Requests_Exception_HTTP_Unknown'; } }