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. */
  14. class Services_Blogging_Exception extends Exception
  15. {
  16.     public function __construct($message = null$code = 0)
  17.     {
  18.         parent::__construct($message$code);
  19.     }//public function __construct($message = null, $code = 0)
  20. }//class Services_Blogging_Exception extends Exception
  21. ?>

Documentation generated on Mon, 11 Mar 2019 14:57:58 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.