You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
740 B
28 lines
740 B
|
13 years ago
|
<?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
|
||
|
|
*/
|
||
|
|
require_once '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
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|