mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Replaces unsecure links in documentation and translator comments with their secure versions. Props johnpgreen, netweb Fixes #36993 git-svn-id: https://develop.svn.wordpress.org/trunk@37674 602fd350-edb4-49c9-b593-d223f7449a82
29 lines
535 B
PHP
Executable File
29 lines
535 B
PHP
Executable File
<?php
|
|
/**
|
|
* Exception for 431 Request Header Fields Too Large responses
|
|
*
|
|
* @see https://tools.ietf.org/html/rfc6585
|
|
* @package Requests
|
|
*/
|
|
|
|
/**
|
|
* Exception for 431 Request Header Fields Too Large responses
|
|
*
|
|
* @see https://tools.ietf.org/html/rfc6585
|
|
* @package Requests
|
|
*/
|
|
class Requests_Exception_HTTP_431 extends Requests_Exception_HTTP {
|
|
/**
|
|
* HTTP status code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 431;
|
|
|
|
/**
|
|
* Reason phrase
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $reason = 'Request Header Fields Too Large';
|
|
} |