Requests_Exception_HTTP_429{} WP 1.0
Exception for 429 Too Many Requests responses
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Requests_Exception_HTTP_429 = new Requests_Exception_HTTP_429(); // use class methods
Методы
Нет Методов у класса.
Заметки
- Смотрите: https://tools.ietf.org/html/draft-nottingham-http-new-status-04
- Пакет: Requests
Код Requests_Exception_HTTP_429{} Requests Exception HTTP 429{} WP 5.6.2
class Requests_Exception_HTTP_429 extends Requests_Exception_HTTP {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 429;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Too Many Requests';
}