Search code examples
laravelexceptionthrow

Are there Laravel Exceptions that we can manually throw in the application code?


I was wondering if Laravel has setup specific Exception classes for the developers to throw in their application code when needed. Is there such thing?


Solution

  • There are some https://laravel.com/api/5.5/search.html?search=exception

    But why would you want to throw them? You can create your own exceptions that will fit into your domain.