* @copyright 2005 James Stewart * @license http://www.gnu.org/copyleft/lesser.html GNU LGPL * @version CVS: $Id: Exception.php,v 1.3 2005/11/07 01:52:35 jystewart Exp $ * @link http://pear.php.net/package/XML_Feed_Parser/ */ /** * We are extending PEAR_Exception */ require_once 'PEAR/Exception.php'; /** * XML_Feed_Parser_Exception is a simple extension of PEAR_Exception, existing * to help with identification of the source of exceptions. * * @author James Stewart * @version Release: 1.0.3 * @package XML_Feed_Parser */ class XML_Feed_Parser_Exception extends PEAR_Exception { } ?>