home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / Services / Blogging / Driver / Exception.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  653 b   |  23 lines

  1. <?php
  2. /**
  3.  * Exception class for the Services_Blogging Drivers.
  4.  * 
  5.  * Extends the Services_Blogging_Exception exception class
  6.  * to make it easyto distinguish between driver and other
  7.  * exceptions via instanceof or in try/catch().
  8.  *
  9.  * @category Services
  10.  * @package  Services_Blogging
  11.  * @author   Anant Narayanan <anant@php.net>
  12.  * @author   Christian Weiske <cweiske@php.net>
  13.  * @license  http://www.gnu.org/copyleft/lesser.html  LGPL License 2.1
  14.  * @link     http://pear.php.net/package/Services_Blogging
  15.  */
  16. require_once 'Services/Blogging/Exception.php';
  17.  
  18. class Services_Blogging_Driver_Exception
  19.     extends Services_Blogging_Exception
  20. {
  21. }
  22. ?>
  23.