Exception.php 740 B

12345678910111213141516171819202122232425262728
  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. require_once 'PEAR/Exception.php';
  16. /**
  17. * Exception for Text_CAPTCHA
  18. *
  19. * @category Text
  20. * @package Text_CAPTCHA
  21. * @author Michael Cramer <michael@bigmichi1.de>
  22. * @license http://www.opensource.org/licenses/bsd-license.php BSD License
  23. * @link http://pear.php.net/package/Text_CAPTCHA
  24. */
  25. class Text_CAPTCHA_Exception extends PEAR_Exception
  26. {
  27. }