0 关注者

类 yii\web\TooManyRequestsHttpException

继承关系yii\web\TooManyRequestsHttpException » yii\web\HttpException » yii\base\UserException » yii\base\Exception » Exception
可用版本2.0
源代码 https://github.com/yiisoft/yii2/blob/master/framework/web/TooManyRequestsHttpException.php

TooManyRequestsHttpException 表示一个状态码为 429 的“请求过多”HTTP 异常。

使用此异常指示客户端在给定时间段内发出了过多的请求。例如,当对 API 用户进行“限流”时,您将抛出此异常。

另请参阅 https://tools.ietf.org/html/rfc6585#section-4

公共属性

隐藏继承的属性

属性 类型 描述 定义于
$statusCode integer HTTP 状态码,例如 403、404、500 等。 yii\web\HttpException

方法详情

隐藏继承的方法

__construct() 公共方法

构造函数。

public void __construct ( $message null, $code 0, $previous null )
$message string|null

错误信息

$code integer

错误代码

$previous Throwable|null

用于异常链的先前异常。

                public function __construct($message = null, $code = 0, $previous = null)
{
    parent::__construct(429, $message, $code, $previous);
}

            
getName() 公共方法
public string getName ( )
返回值 string

此异常的用户友好名称

                public function getName()
{
    if (isset(Response::$httpStatuses[$this->statusCode])) {
        return Response::$httpStatuses[$this->statusCode];
    }
    return 'Error';
}