Files
2003-03-23 04:35:37 +00:00

14 lines
179 B
PHP

<?php
define('NUM', 10);
try {
if (NUM < 20) {
throw new Exception(
NUM . " is too small!"
);
}
} catch (Exception $e) {
echo $e->getMessage();
echo "\n<br />\n";
}
?>