Thinkphp try{}catch()异常处理的写法

最近在项目开发中 异常处理捕获不到,查了下关于异常处理的资料,还是命名空间的问题
public function del ($id) {//在模型中抛出异常
        if ( !$id || !is_array($id) ) {
            E('ID不合法'); //这里用的thinkPHP自带的E方法,也可使用 throw new \Think\Exception('XXXXXX');
        }
        $condition['id'] = array('in',$id);
        return $this->_db->where($condition)->delete();
    }
控制器接收异常
 try {
	$res = D($model)->del($id);
}catch (\Exception $e) {  //如书写为(Exception $e)将无效
	echo $e->getMessage();
}

你可能感兴趣的:(PHP)