PHP - Error and Exception Handling
What will be the output of this PHP code?
try {
echo "Start\n";
throw new Exception("Error happened");
echo "End\n";
} catch (Exception $e) {
echo "Caught: " . $e->getMessage() . "\n";
}
echo "Done\n";