XML_Feed_Parser
[ class tree: XML_Feed_Parser ] [ index: XML_Feed_Parser ] [ all elements ]

Source for file Exception.php

Documentation is available at Exception.php

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  3.  
  4. /**
  5.  * Keeps the exception class for XML_Feed_Parser.
  6.  *
  7.  * PHP versions 5
  8.  *
  9.  * LICENSE: This source file is subject to version 3.0 of the PHP license
  10.  * that is available through the world-wide-web at the following URI:
  11.  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of
  12.  * the PHP License and are unable to obtain it through the web, please
  13.  * send a note to license@php.net so we can mail you a copy immediately.
  14.  *
  15.  * @category   XML
  16.  * @package    XML_Feed_Parser
  17.  * @author     James Stewart <james@jystewart.net>
  18.  * @copyright  2005 James Stewart <james@jystewart.net>
  19.  * @license    http://www.gnu.org/copyleft/lesser.html  GNU LGPL
  20.  * @version    CVS: $Id: Exception.php,v 1.3 2005/11/07 01:52:35 jystewart Exp $
  21.  * @link       http://pear.php.net/package/XML_Feed_Parser/
  22.  */
  23.  
  24. /**
  25.  * We are extending PEAR_Exception
  26.  */
  27. require_once 'PEAR/Exception.php';
  28.  
  29. /**
  30.  * XML_Feed_Parser_Exception is a simple extension of PEAR_Exception, existing
  31.  * to help with identification of the source of exceptions.
  32.  *
  33.  * @author  James Stewart <james@jystewart.net>
  34.  * @version Release: 1.0.3
  35.  * @package XML_Feed_Parser
  36.  */ 
  37. class XML_Feed_Parser_Exception extends PEAR_Exception
  38. {
  39.  
  40. }
  41.  
  42. ?>

Documentation generated on Wed, 19 Nov 2008 08:30:07 -0500 by phpDocumentor 1.4.0. PEAR Logo Copyright © PHP Group 2004.