1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Exception for Text_CAPTCHA
- *
- * PHP version 5
- *
- * @category Text
- * @package Text_CAPTCHA
- * @author Christian Weiske <cweiske@php.net>
- * @author Christian Wenz <wenz@php.net>
- * @author Michael Cramer <michael@bigmichi1.de>
- * @license http://www.opensource.org/licenses/bsd-license.php BSD License
- * @link http://pear.php.net/package/Text_CAPTCHA
- */
- $lib_path = api_get_path(LIBRARY_PATH);
- require_once $lib_path.'/pear/Exception.php';
- /**
- * Exception for Text_CAPTCHA
- *
- * @category Text
- * @package Text_CAPTCHA
- * @author Michael Cramer <michael@bigmichi1.de>
- * @license http://www.opensource.org/licenses/bsd-license.php BSD License
- * @link http://pear.php.net/package/Text_CAPTCHA
- */
- class Text_CAPTCHA_Exception extends PEAR_Exception
- {
- }
|