RosettaCodeData/Task/Exceptions/PHP/exceptions-3.php

6 lines
106 B
PHP
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
try {
throwsException();
} catch (Exception $e) {
echo 'Caught exception: ' . $e->getMessage();
}