0 关注者

类 yii\web\ServerErrorHttpException

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

ServerErrorHttpException 代表一个具有状态码 500 的“内部服务器错误”HTTP 异常。

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

公共属性

隐藏继承的属性

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

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

此异常的用户友好名称

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