当前位置:Gxlcms > PHP教程 > Yii2.0抛出异常问题

Yii2.0抛出异常问题

时间:2021-07-01 10:21:17 帮助过:4人阅读

try {
    $model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
    throw new BadRequestHttpException($e->getMessage());
}

这是 Yii2.0 中的一段代码。

RT,在实际项目开发中,什么情况下需要抛出异常并进行处理?

回复内容:

try {
    $model = new ResetPasswordForm($token);
} catch (InvalidParamException $e) {
    throw new BadRequestHttpException($e->getMessage());
}

这是 Yii2.0 中的一段代码。

RT,在实际项目开发中,什么情况下需要抛出异常并进行处理?

比如redis没连接上

try {
    $redis = new redis();
} catch (\Exception $e) {
    var_dump($e->getMessage());
}

人气教程排行