我有一个silex应用程序。我有一个注册通用处理程序:
$app->error(function (\Exception $e) use ($app) {
return (new JsonResponse(['message' => 'Something truly horrible happened. Sorry.', 500)])->send();
}
);
然而,当某些事情在$app::share()
中抛出异常时,它不会触发:
$app->share(function () {
throw new \Exception('wtf');
}));
错误处理程序不会处理此异常,而是直接弹出,就好像根本没有处理程序一样:
exception 'Exception' with message 'wtf' in appinit.php:230
Stack trace: #0 ./vendor/pimple/pimple/lib/Pimple.php(126): Closure$#12() #1 ./vendor/pimple/pimple/lib/Pimple.php(83): Closure$Pimple::share() #2 ./web/appinit.php(234): Pimple->offsetGet() #3 app.php(6): include() #4 {main}
我只是期望基本的400 Bad Request响应内容:
{
"message": "Something truly horrible happened. Sorry.",
}
为什么我的处理程序没有激活?
答案 0 :(得分:0)
在silex中,错误处理程序仅处理在Middleware上发生的异常。所以事实上,错误永远不会被调用,这是设计的,因为异常发生在:
try {
$app->run()
} catch(\Exception $e) {
// this will be caught
}