200-710 Web TestEngine demo

Exit VCEDump 200-710 Zend Certified Engineer
Question 13 of 35
0% complete
Q13 Single choice

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);

}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in