我正在使用Symfony2和https://github.com/FriendsOfSymfony/FOSRestBundle
进行RestApi我记录了所有错误,如果出现问题,我会发送异常。
例如:
throw new AccessDeniedException("This is a message for my error");
当我处于开发模式时,我可以在响应中检索我的消息This is a message for my error
,但在生产模式下,我只有{"error":{"code":403,"message":"Forbidden"}}
如何在生产模式下编辑此错误中的消息?