Symfony,生产中的异常消息

时间:2014-07-29 12:13:21

标签: symfony

我正在使用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"}}

如何在生产模式下编辑此错误中的消息?

1 个答案:

答案 0 :(得分:2)

与ExceptionController相关的选项可能会让您感兴趣。你看过this page吗?