When the code below, PHP should catch the exception and continue execution without throwing the error / exception page.
Question: However, with Laravel 4, an exception page appears. Setting app.debug to false only hides the stack trace. How to make Laravel ignore and continue execution?
try { SomeOperation(); } catch (SomeException $e) { // do nothing... php will ignore and continue }
Nyxynyx
source share