Exception.php 698 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Part of XML_XRD
  4. *
  5. * PHP version 5
  6. *
  7. * @category XML
  8. * @package XML_XRD
  9. * @author Christian Weiske <cweiske@php.net>
  10. * @license http://www.gnu.org/copyleft/lesser.html LGPL
  11. * @link http://pear.php.net/package/XML_XRD
  12. */
  13. /**
  14. * Base exception interface for all XML_XRD related exceptions.
  15. * With that interface, it is possible to catch all XML_XRD exceptions
  16. * with a single catch statement.
  17. *
  18. * @category XML
  19. * @package XML_XRD
  20. * @author Christian Weiske <cweiske@php.net>
  21. * @license http://www.gnu.org/copyleft/lesser.html LGPL
  22. * @version Release: @package_version@
  23. * @link http://pear.php.net/package/XML_XRD
  24. */
  25. interface XML_XRD_Exception
  26. {
  27. }
  28. ?>