Source for file error.php
Documentation is available at error.php
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2001 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Dan Allen <dan@mojavelinux.com> |
// +----------------------------------------------------------------------+
// $Id: error.php,v 1.4 2002/06/07 00:13:15 dallen Exp $
// Xpath/DOM XML Error interface to PEAR::Error
// {{{ class XML_XPath_Error
* Error class for the XML_XPath interface, which just prepares some variables and spawns PEAR_Error
* @author Dan Allen <dan@mojavelinux.com>
* Message in front of the error message
* @var string $error_message_prefix
* Creates an XML_XPath error object, extending the PEAR_Error class
* @param int $code the xpath error code
* @param int $mode the reaction to the error, either return, die or trigger/callback
* @param int $level intensity of the error (PHP error code)
* @param mixed $debuginfo any information that can inform user as to nature of the error
function XML_XPath_Error ($code = XML_XPATH_ERROR , $mode = PEAR_ERROR_RETURN ,
$level = E_USER_NOTICE , $debuginfo = null )
$this->PEAR_Error (" Invalid error code: $code" , XML_XPATH_ERROR, $mode, $level, $debuginfo);
Documentation generated on Mon, 11 Mar 2019 14:44:42 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|