Reputation: 76
When we write in laravel
use Exception;
what is the underlying class behind it? or is it php native Exception class?
Upvotes: 0
Views: 312
Reputation: 3529
It is PHP native exception, every Laravel exception has a namespace started by Illuminate
Upvotes: 2