Posts Tagged ‘nested try catch example’
multiple catch block in php
Saturday, November 1, 2008 9:56 No CommentsSome time there is a need to catch more than one exception..In such a situation, we can associate more than one catch statement with a try, When an exception is thrown, the exception handlers are searched in order for an appropriate match. The first handler that yields a match is executed. After executing the handler, [...]
