LogicException.php 688 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. require_once 'XML/XRD/Exception.php';
  14. /**
  15. * XML_XRD exception that's thrown when something is not supported
  16. *
  17. * @category XML
  18. * @package XML_XRD
  19. * @author Christian Weiske <cweiske@php.net>
  20. * @license http://www.gnu.org/copyleft/lesser.html LGPL
  21. * @version Release: @package_version@
  22. * @link http://pear.php.net/package/XML_XRD
  23. */
  24. class XML_XRD_LogicException extends LogicException implements XML_XRD_Exception
  25. {
  26. }
  27. ?>