What will this code output?
<?php try { // generates a notice error (not caught) echo $thisVariableIsNotSet; } catch (Error $e) { echo "Error caught"; }