Briefing Zend Knowledge

Would the following code catch a parse error?

Would the following code catch a parse error?
<code>
try{
echo$label
} catch (Exception $e) {
echo$e->getMessage();
}
</code>

A.
Yes

B.
No