browse by tag: exception
sort by
Exceptions, you're doing it wrong
in PHP added by goodphptutorials, on 23/5/2008 advanced tutorials exceptions framework
Once again a post aimed at the PHP community, not so much of a rant but more of something I’ve seen done horribly wrong in a lot of PHP code recently
comment save reportCreating Your Own Exception Classes
in PHP added by tutorialhelpdesk, on 3/2/2008 class exception php5
Learn to get control over how (or if) error messages are displayed to users, even though you're using several third-party libraries that each have their own views on handling errors.
comment save reportPHP Exception Handling
in PHP added by goodphptutorials, on 21/11/2007 beginner tutorials exception php5
With PHP 5 came a new object oriented way of dealing with errors. Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs. This condition is called an exception.
comment save reportError Handling: Stepping beyond True/False Results
in PHP added by goodphptutorials, on 12/1/2006 beginner tutorials error error handling exceptions warning
Proper error handling is a struggle for most software engineers, myself included. There is no fun in error handling, no logic puzzles to solve. Most of us don?t add any kind of error handling to our code until we run into a problem.
comment save report