Adds docblock comments and HTTP spec links for the new HTTP Exception classes (#2103)

This commit is contained in:
Daniel Schmidt
2014-01-22 19:23:39 -08:00
parent f24454a458
commit 7fef8cf0cf
10 changed files with 110 additions and 6 deletions

View File

@@ -8,8 +8,13 @@
namespace yii\web;
/**
* TooManyRequestsHttpException represents a "Too Many Requests" HTTP exception with status code 429.
* TooManyRequestsHttpException represents a "Too Many Requests" HTTP exception with status code 429
*
* Use this exception to indicate that a client has made too many requests in a
* given period of time. For example, you would throw this exception when
* 'throttling' an API user.
*
* @link http://tools.ietf.org/search/rfc6585#section-4
* @author Dan Schmidt <danschmidt5189@gmail.com>
* @since 2.0
*/