Exception.php 375 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * This file is part of amfPHP
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the license that is bundled
  8. * with this package in the file license.txt.
  9. */
  10. /**
  11. * just a type to distinguish between Amfphp exceptions and any other exceptions
  12. *
  13. * @package Amfphp_Core
  14. * @author Ariel Sommeria-klein
  15. */
  16. class Amfphp_Core_Exception extends Exception {
  17. }
  18. ?>