giunashvili
giunashvili

Reputation: 76

Laravel Base Exception Class

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

Answers (1)

Shizzen83
Shizzen83

Reputation: 3529

It is PHP native exception, every Laravel exception has a namespace started by Illuminate

Upvotes: 2

Related Questions