Laravel 5 Customexception

时间:2015-06-04 10:14:47

标签: php exception laravel-5

我正在玩Laravel5来测试自定义异常。 但它返回错误

  

在字符串

上调用成员函数send()

我无法弄明白为什么。

1.routes.php

routes.php

2.App/Exceptions/toshikiER.php

App\Exceptions\toshikiER.php

3.composer.php

composer.json

4.App/Exceptions/Hanlder.php

App\Exceptions\Handler.php

1 个答案:

答案 0 :(得分:3)

如果你看看渲染方法注释。

/**
 * Render an exception into a response.
 *
 * @param  \Illuminate\Http\Request  $request
 * @param  \Exception  $e
 * @return \Illuminate\Http\Response
 */

你会看到你必须返回\ Illuminate \ Htttp \ Response。

我也有自己的异常,我像这样处理我的新异常

return response()->view("your.view", [], 403);