Result Size:
625 x 571
tryphp_keyword_catch.php:
<!DOCTYPE html> <html> <body> <?php try { throw new Exception("This is an exception"); } catch(Exception $e) { echo $e->getMessage(); } ?> </body> </html>
This is an exception