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 / Exception.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  757 b   |  22 lines

  1. <?php
  2. /**
  3. * Exception class for the Services_Blogging package.
  4. * Extends the normal exception class to make it easy
  5. * to distinguish between blogging and other exceptions
  6. * via instanceof
  7. *
  8. * @category Services
  9. * @package  Services_Blogging
  10. * @author   Anant Narayanan <anant@php.net>
  11. * @author   Christian Weiske <cweiske@php.net>
  12. * @license  http://www.gnu.org/copyleft/lesser.html  LGPL License 2.1
  13. * @link     http://pear.php.net/package/Services_Blogging
  14. */
  15. class Services_Blogging_Exception extends Exception
  16. {
  17.     public function __construct($message = null, $code = 0)
  18.     {
  19.         parent::__construct($message, intval($code));
  20.     }//public function __construct($message = null, $code = 0)
  21. }//class Services_Blogging_Exception extends Exception
  22. ?>