Requests_Exception_HTTP::get_class() WordPress Method
The Requests_Exception_HTTP::get_class() method is used to get the class of an HTTP exception. This is useful for catching specific errors when dealing with the Requests library.
Requests_Exception_HTTP::get_class( int|bool $code ) #
Get the correct exception class for a given error code
Parameters
- $code
(int|bool)(Required)HTTP status code, or false if unavailable
Return
(string) Exception class name to use
Source
File: wp-includes/Requests/Exception/HTTP.php
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';
}
Expand full source codeCollapse full source codeView on TracView on GitHub