PHP - Error and Exception Handling
What will this PHP code output?
try {
echo 'Start';
throw new Exception('Fail');
echo 'End';
} catch (Exception $e) {
echo 'Caught';
}