laravel 5異常FatalErrorException in Handler.php line 38如何解決

來源:互聯網
上載者:User
本文主要給大家介紹了關於laravel 5異常錯誤:FatalErrorException in Handler.php line 38的解決方案,文中將解決方案介紹的非常詳細,需要的朋友可以參考借鑒,下面隨著小編來一起學習學習吧。希望能協助到大家。

前言

本文主要給大家介紹了關於laravel5異常錯誤FatalErrorException in Handler.php line 38的解決,分享出來供大家參考學習,話不多說了,來一起看看詳細的介紹。

1、錯誤提示

FatalErrorException in Handler.php line 38:Uncaught TypeError: Argument 1 passed to App\Exceptions\Handler::report() must be an instance of Exception, instance of Error given, called in D:\www\activity\vendor\compiled.php on line 1817 and defined in D:\www\activity\app\Exceptions\Handler.php:38Stack trace:#0 D:\www\activity\vendor\compiled.php(1817): App\Exceptions\Handler->report(Object(Error))#1 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleException(Object(Error))#2 {main}thrown

原因:D:wwwactivityvendorcompiled.php on line 1817 的變數$e不是Exception的執行個體對象(對錯誤提示的翻譯……^.^笑cry)

2、解決方案

在提示的錯誤地方加上變數$e的執行個體判斷,如果不是Exception類型,就new一個

if (!$e instanceof \Exception) { $e = new FatalThrowableError($e);}

new完之後的樣子:

public function handleException($e){ if (!$e instanceof \Exception) {  $e = new FatalThrowableError($e); } $this->getExceptionHandler()->report($e); if ($this->app->runningInConsole()) {  $this->renderForConsole($e); } else {  $this->renderHttpResponse($e); }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.