Throwable
Throwable is the base interface for any object that can be thrown via a throw statement in PHP 7, including Error and Exception.
Exception 实现了 Throwable接口 因此如果 应用 只在7.x中运行,完全可以不再用Exception
直接用
try{
}cacth(Throwable $e){
}
未经允许不得转载:开心乐窝-乐在其中 » 7.x 中Throwable 异常和错的接口