<?php class MyException extends Exception {} try { throw new MyException(); } catch (Exception $e) { echo "Parent exception"; } catch (MyException $e) { echo "Child exception"; }
You have javascript disabled. You will not be able to edit any code.