简体   繁体   中英

Exception class not found in Laravel

When I use this code in Laravel framework:

throw new Exception("failed");

it throws this error:

FatalErrorException in MyController.php line 178: Class 'App\\Http\\Controllers\\Exception' not found

Does anybody know how can I use ( include ) that Exception class to my controller? Where is actually it?

Throw the exception using the following code.

throw new \Exception("failed");

Otherwise, import the class before using.

use Exception;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM