From 6e3c862b51e10c3e1ff1af929ab2ee97ca625f19 Mon Sep 17 00:00:00 2001 From: Wil Moore III Date: Tue, 10 Jul 2012 14:36:46 -0600 Subject: [PATCH] added a couple exception references that are useful for the real-world --- _posts/05-02-01-Exceptions.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_posts/05-02-01-Exceptions.md b/_posts/05-02-01-Exceptions.md index cc5487a..9358ff0 100644 --- a/_posts/05-02-01-Exceptions.md +++ b/_posts/05-02-01-Exceptions.md @@ -58,7 +58,11 @@ Exception which is vague, or creating a custom Exception just for that, you coul * [Read about Exceptions][exceptions] * [Read about SPL Exceptions][splexe] +* [Nesting Exceptions In PHP][nesting-exceptions-in-php] +* [Exception Best Practices in PHP 5.3][exception-best-practices53] [exceptions]: http://php.net/manual/en/language.exceptions.php [splexe]: http://php.net/manual/en/spl.exceptions.php [splext]: /#standard_php_library +[exception-best-practices53]: http://ralphschindler.com/2010/09/15/exception-best-practices-in-php-5-3 +[nesting-exceptions-in-php]: http://www.brandonsavage.net/exceptional-php-nesting-exceptions-in-php/