mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
14 lines
179 B
PHP
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";
|
|
}
|
|
?>
|