Laravel throws Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException
and then App::missing()
catches this, atleast it does that in non HHVM PHP but how would i catch the exception in HHVM?
HHVM aims to execute any PHP so you would catch it the same way with try {} catch {}
.