Used By
Used By | Description |
---|---|
wp-includes/Requests/Response.php: Requests_Response::throw_for_status() | Throws an exception if the request was not successful |
Get the correct exception class for a given error code
(int|bool) (Required) HTTP status code, or false if unavailable
(string) Exception class name to use
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'; }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_exception_http/get_class