Exception.php 791 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Exception for Text_CAPTCHA
  4. *
  5. * PHP version 5
  6. *
  7. * @category Text
  8. * @package Text_CAPTCHA
  9. * @author Christian Weiske <cweiske@php.net>
  10. * @author Christian Wenz <wenz@php.net>
  11. * @author Michael Cramer <michael@bigmichi1.de>
  12. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  13. * @link http://pear.php.net/package/Text_CAPTCHA
  14. */
  15. $lib_path = api_get_path(LIBRARY_PATH);
  16. require_once $lib_path.'/pear/Exception.php';
  17. /**
  18. * Exception for Text_CAPTCHA
  19. *
  20. * @category Text
  21. * @package Text_CAPTCHA
  22. * @author Michael Cramer <michael@bigmichi1.de>
  23. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  24. * @link http://pear.php.net/package/Text_CAPTCHA
  25. */
  26. class Text_CAPTCHA_Exception extends PEAR_Exception
  27. {
  28. }