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

Source for file error.php

Documentation is available at error.php

  1. <?php
  2. // {{{ license
  3.  
  4. // +----------------------------------------------------------------------+
  5. // | PHP version 4.0                                                      |
  6. // +----------------------------------------------------------------------+
  7. // | Copyright (c) 1997-2001 The PHP Group                                |
  8. // +----------------------------------------------------------------------+
  9. // | This source file is subject to version 2.0 of the PHP license,       |
  10. // | that is bundled with this package in the file LICENSE, and is        |
  11. // | available at through the world-wide-web at                           |
  12. // | http://www.php.net/license/2_02.txt.                                 |
  13. // | If you did not receive a copy of the PHP license and are unable to   |
  14. // | obtain it through the world-wide-web, please send a note to          |
  15. // | license@php.net so we can mail you a copy immediately.               |
  16. // +----------------------------------------------------------------------+
  17. // | Authors: Dan Allen <dan@mojavelinux.com>                             |
  18. // +----------------------------------------------------------------------+
  19.  
  20. // $Id: error.php,v 1.4 2002/06/07 00:13:15 dallen Exp $
  21.  
  22. // }}}
  23. // {{{ description
  24.  
  25. // Xpath/DOM XML Error interface to PEAR::Error
  26.  
  27. // }}}
  28.  
  29. // {{{ class XML_XPath_Error
  30.  
  31. /**
  32.  * Error class for the XML_XPath interface, which just prepares some variables and spawns PEAR_Error
  33.  *
  34.  * @version  Revision: 1.1
  35.  * @author   Dan Allen <dan@mojavelinux.com>
  36.  * @access   public
  37.  * @since    PHP 4.2.1
  38.  * @package  XML_XPath
  39.  */
  40.  
  41. // }}}
  42. class XML_XPath_Error extends PEAR_Error {
  43.     // {{{ properties 
  44.  
  45.     /**
  46.      * Message in front of the error message
  47.      * @var string $error_message_prefix 
  48.      */
  49.     var $error_message_prefix = 'XML_XPath Error: ';
  50.     
  51.     // }}}
  52.     // {{{ constructor
  53.  
  54.     /**
  55.      * Creates an XML_XPath error object, extending the PEAR_Error class
  56.      *
  57.      * @param int   $code the xpath error code
  58.      * @param int   $mode the reaction to the error, either return, die or trigger/callback
  59.      * @param int   $level intensity of the error (PHP error code)
  60.      * @param mixed $debuginfo any information that can inform user as to nature of the error
  61.      *
  62.      * @access private
  63.      */
  64.     function XML_XPath_Error($code = XML_XPATH_ERROR$mode = PEAR_ERROR_RETURN
  65.                          $level = E_USER_NOTICE$debuginfo = null
  66.     {
  67.         if (is_int($code)) {
  68.             $this->PEAR_Error(XML_XPath::errorMessage($code)$code$mode$level$debuginfo);
  69.         
  70.         else {
  71.             $this->PEAR_Error("Invalid error code: $code"XML_XPATH_ERROR$mode$level$debuginfo);
  72.         }
  73.     }
  74.     
  75.     // }}}
  76. }
  77. ?>

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