<?php try { if($a < 20) { throw new Exception('$a is too small!'); } } catch (Exception $e) { echo $e->getMessage(); }?>