这是 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());}
