解析:
本题主要考查PHP中异常的使用。
异常(Exception)用于在指定的错误发生时改变脚本的正常流程,结合 try, throw 和 catch 使用。
try{ // Your Code } catch(Exception $exception) { throw $exception; }
更多关于异常的内容,请查看我们的 PHP教程——异常