Maybe I'm missing it somewhere in the PHP manual, but what exactly is the difference between an error and an exception? The only difference that I can see is that errors and exceptions are handled differently. But what causes an exception and what causes an error?
|
4
|
|
|
|
|
|
Exceptions are thrown - they are intended to be caught. Errors are generally unrecoverable. Lets say for instance - you have a block of code that will insert a row into a database. It is possible that this call fails (duplicate ID) - you will want to have a "Error" which in this case is an "Exception". When you are inserting these rows, you can do something like this
Program execution will continue - because you 'caught' the exception. An exception will be treated as an error unless it is caught. It will allow you to continue program execution after it fails as well. |
||
|
|
|
|
I usually In debug situations i also have an exception handler that outputs an asp.net like page. I'm posting this on the road but if requested I will post example source later. edit: Addition as promised, I've cut and pasted some of my code together to make a sample. I've saved the below to file on my workstation, you can see the results here.
|
||||||
|
|
|
One thing to add here is about handling exceptions and errors. For the purpose of the application developer, both errors and exceptions are "bad things" that you want to record to learn about the problems that your application has - so that your customers have a better experience in the long run. So it makes sense to write an error handler that does the same thing as what you do for exceptions - writes a report to a database, emails the admin, etc. In that regard, take a look at http://www.markslade.name/Articles.html?a=11 (making PHP handler errors like exceptions). |
||
|
|
|
|
Exceptions are thrown intentionally by code using a throw, errors... not so much. Errors come about as a result of something which isn't handled typically. (IO errors, TCP/IP errors, null reference errors) |
||
|
|
