Zend 200-550 Question Answer
What is the output of the following code?
try {
class MyException extends Exception {};
try {
throw new MyException;
}
catch (Exception $e) {
echo "1:";
throw $e;
}
catch (MyException $e) {
echo "2:";
throw $e;
}
}
catch (Exception $e) {
echo get_class($e);
}
Zend 200-550 Summary
- Vendor: Zend
- Product: 200-550
- Update on: Jan 2, 2026
- Questions: 223

