0 关注者

类 yii\web\UnauthorizedHttpException

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

UnauthorizedHttpException 表示状态码为 401 的“未经授权”HTTP 异常。

使用此异常来指示客户端需要通过 WWW-Authenticate 标头进行身份验证才能执行请求的操作。

如果客户端已通过身份验证,但只是没有权限执行操作,请考虑使用 403 yii\web\ForbiddenHttpException 或 404 yii\web\NotFoundHttpException 代替。

公共属性

隐藏继承的属性

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

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

此异常的用户友好名称

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