下面的是框架的源码
我想知道源代码中为什么多了一个Throwable?平时写代码都是用Exception的。还请各路大神指教!
2 回答
素胚勾勒不出你
TA贡献1827条经验 获得超9个赞
Throwable 是 php7 新增的顶级异常 interface,包含了 Error 和 Exception。
Throwable is the base interface for any object that can be thrown via
a throw statement in PHP 7, including Error and Exception.PHP classes cannot implement the Throwable interface directly, and
must instead extend Exception.
- 2 回答
- 0 关注
- 664 浏览
添加回答
举报
0/150
提交
取消