PHP - Error and Exception Handling
What will be the output of this PHP code?
try {
throw new Exception("Failed");
echo "This will not print";
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}