0 关注者

类 yii\web\ForbiddenHttpException

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

ForbiddenHttpException 代表一个状态码为 403 的 “禁止” HTTP 异常。

当用户不被允许执行请求的动作时,使用此异常。 使用不同的凭据可能允许或可能不允许执行请求的动作。 如果你不想向用户公开授权信息,使用一个 404 yii\web\NotFoundHttpException 进行响应也是有效的。

另请参阅 https://tools.ietf.org/html/rfc7231#section-6.5.3.

公共属性

隐藏继承的属性

属性 类型 描述 定义于
$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(403, $message, $code, $previous);
}

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

此异常的用户友好名称

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