Requests_Exception_HTTP_500{} WP 1.0
Exception for 500 Internal Server Error responses
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Exception_HTTP_500 = new Requests_Exception_HTTP_500(); // use class methods
Methods
No Methods in class.
Notes
- Package: Requests
Code of Requests_Exception_HTTP_500{} Requests Exception HTTP 500{} WP 5.6
class Requests_Exception_HTTP_500 extends Requests_Exception_HTTP {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 500;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Internal Server Error';
}