0 关注者

类 yii\web\UnprocessableEntityHttpException

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

UnprocessableEntityHttpException 表示一个状态码为 422 的“不可处理的实体”HTTP 异常。

使用此异常来告知服务器理解请求实体的内容类型以及该请求实体的语法是正确的,但服务器无法处理包含的指令。例如,返回表单验证错误。

公共属性

隐藏继承的属性

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

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

此异常的用户友好名称

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