[fw-general] Error handling in Zend

2010-12-16 Thread jalexander3
Hello, I have read about the ErrorController that comes standard with the framework. It seems to only handle certain errors pertaining to missing MVC components--that's fine, I can use that. However, for my purposes I think I need a better understanding of URL rewriting and how the framework

Re: [fw-general] Error handling in Zend

2010-12-16 Thread Ralph Schindler
Hey Jeremy, Ultimately, it all depends on what kind of exceptions are thrown, where they are thrown, and how the framework is setup to handle them. There's lot of moving parts, and a default application already takes care of them form you for the most part. Out of the box, the Front

Re: [fw-general] Error handling in Zend

2010-12-16 Thread scs
These explanations are very helpful. Thanks Ralph. On Thu, Dec 16, 2010 at 6:24 PM, Ralph Schindler ralph.schind...@zend.comwrote: Hey Jeremy, Ultimately, it all depends on what kind of exceptions are thrown, where they are thrown, and how the framework is setup to handle them. There's

[fw-general] Error Handling w/ Zend DB

2007-07-25 Thread Ryan Graciano
I'm trying to handle errors appropriately after an insert into MySQL with Zend_DB and the MySQLi plugin, but I'm having a rough time determining the cause of the error. For example, I'd like my application to catch the exception, determine if the exception occurred due to a unique key violation,

RE: [fw-general] Error Handling w/ Zend DB

2007-07-25 Thread Bill Karwin
/ZF-1768 Regards, Bill Karwin From: Ryan Graciano [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 2:24 PM To: fw-general@lists.zend.com Subject: [fw-general] Error Handling w/ Zend DB I'm trying