PHP - Error and Exception Handling
What will be the output of this PHP code?
function example() {
try {
echo "Start ";
throw new Exception("Error");
} catch (Exception $e) {
echo "Catch ";
} finally {
echo "Finally";
}
echo " End";
}
example();