How can I handle this kind of exceptions (in Doctrine)
- by ppavlovic
Can you tell me how can I handle this kind of exceptions:
Fatal error: Uncaught exception
'Doctrine_Connection_Exception' with
message 'PDO Connection Error:
SQLSTATE[HY000] [2013] Lost connection
to MySQL server at 'reading initial
communication packet', system error: 110' in ...
It happens when connection with MySQL is lost during query. I need to handle this exception so I can show 500 error page so the crawlers do not cache page, and to redirect user to appropriate "Try again" page.
P.S. I have a lot's of code, so I can not go trough all code to put try/catch block. I need something simple and yet effective.