* @copyright 2005 James Stewart * @license http://www.gnu.org/copyleft/lesser.html GNU LGPL * @version CVS: $Id: Exception.php 6594 2011-05-23 07:11:44Z mMarinetti $ * @link http://pear.php.net/package/XML_Feed_Parser/ */ /** * We are extending PEAR_Exception */ require_once(dirname(__FILE__).'/../../pear/PEAR.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.2 * @package XML_Feed_Parser */ class XML_Feed_Parser_Exception extends PEAR_Exception { } ?>