Requests_Exception_HTTP_511{} WP 1.0
Exception for 511 Network Authentication Required responses
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Exception_HTTP_511 = new Requests_Exception_HTTP_511(); // use class methods
Methods
No Methods in class.
Notes
- See: https://tools.ietf.org/html/rfc6585
- Package: Requests
Code of Requests_Exception_HTTP_511{} Requests Exception HTTP 511{} WP 5.6
class Requests_Exception_HTTP_511 extends Requests_Exception_HTTP {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 511;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Network Authentication Required';
}