Re: Handling exception question



Since MyException extends Exception, MyException _is_ an Exception.
Therefore, catch (Exception $e) will catch it.

Ok, so how to make a different exceptions nested?

.