use Exception;
public function getInfo(){
try{
1/0;
}catch (Exception $exception){
throw $exception;
}
}
这边抛出异常了,并且config.php
'exception_handle' => 'app\lib\exception\ExceptionHandler',
也配置了。全局异常类如下:
use Exception;
use think\exception\Handle;
class ExceptionHandler extends Handle
{
public function render(Exception $e)
{
return '8888888'; // TODO: Change the autogenerated stub
}
}
发送请求的时候报下面的错误信息,求教大神这是什么情况
ewang1986