mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
47d26cd9fb
Replaces unsecure links in documentation and translator comments with their secure versions. Props johnpgreen, netweb Fixes #36993 Built from https://develop.svn.wordpress.org/trunk@37674 git-svn-id: http://core.svn.wordpress.org/trunk@37640 1a063a9b-81f0-0310-95a4-ce76da25c4cd
29 lines
478 B
PHP
29 lines
478 B
PHP
<?php
|
|
/**
|
|
* Exception for 418 I'm A Teapot responses
|
|
*
|
|
* @see https://tools.ietf.org/html/rfc2324
|
|
* @package Requests
|
|
*/
|
|
|
|
/**
|
|
* Exception for 418 I'm A Teapot responses
|
|
*
|
|
* @see https://tools.ietf.org/html/rfc2324
|
|
* @package Requests
|
|
*/
|
|
class Requests_Exception_HTTP_418 extends Requests_Exception_HTTP {
|
|
/**
|
|
* HTTP status code
|
|
*
|
|
* @var integer
|
|
*/
|
|
protected $code = 418;
|
|
|
|
/**
|
|
* Reason phrase
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $reason = "I'm A Teapot";
|
|
} |