You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
163 B

  1. <?php
  2. try {
  3. $a=new cat();
  4. } catch (Error $e) {
  5. echo $e->getMessage().'<br>';
  6. echo $e->getLine().'<br>';
  7. }
  8. $b=new eat();
  9. ?>