Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなコントローラーで例外をスローしています
throw new Exception("Could not save user. Error: " . $user->getError());
しかし、メッセージを表示する html のレイアウトは、私の Web サイトのレイアウトとは関係ありません。だから私は手を入れて、そのレイアウトのhtmlを変更する必要があります。
どのように?
ユーザーに何かを伝える必要がある場合は、本当に例外をキャッチしてから setMessage を使用してメッセージに変換する必要があります。それ以外の場合は、ログに記録して先に進みます。
また、getError と setError はどちらも推奨されていないことに注意してください。