[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/Requests/Exception/HTTP/ -> 431.php (source)

   1  <?php
   2  /**
   3   * Exception for 431 Request Header Fields Too Large responses
   4   *
   5   * @see https://tools.ietf.org/html/rfc6585
   6   * @package Requests
   7   */
   8  
   9  /**
  10   * Exception for 431 Request Header Fields Too Large responses
  11   *
  12   * @see https://tools.ietf.org/html/rfc6585
  13   * @package Requests
  14   */
  15  class Requests_Exception_HTTP_431 extends Requests_Exception_HTTP {
  16      /**
  17       * HTTP status code
  18       *
  19       * @var integer
  20       */
  21      protected $code = 431;
  22  
  23      /**
  24       * Reason phrase
  25       *
  26       * @var string
  27       */
  28      protected $reason = 'Request Header Fields Too Large';
  29  }


Generated : Thu Dec 15 08:20:01 2022 Cross-referenced by PHPXref