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

Source for file Exception.php

Documentation is available at Exception.php

  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($messageintval($code));
  20.     }//public function __construct($message = null, $code = 0)
  21. }//class Services_Blogging_Exception extends Exception
  22. ?>

Documentation generated on Mon, 11 Mar 2019 15:25:12 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.