PHP - Error and Exception Handling
Find the problem in this PHP code:
try {
echo "Start";
throw new Exception("Oops");
} catch (Exception $e) {
echo "Caught";
} finally {
return;
echo "Done";
}