<?php
/*I add here example for nested Exception Handling.*/
try
{
try
{
throw new exception();
}
catch(exception $m)
{
print $m;
print "<br>";
print "inner exception"."<br>";
}
throw new exception();
}
catch(exception $e)
{
print $e;
print "outer exception";
}
?>