芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/XML/CSSML/Error.php
| // +----------------------------------------------------------------------+ // $Id: Error.php,v 1.2 2003/01/04 11:56:29 mj Exp $ // }}} // {{{ description // XML_CSSML is a CSSML to CSS xslt parser // }}} // {{{ class XML_CSSML_Error /** * XML_CSSML_Error Class for Error Handling of CSSML * @access public */ // }}} class XML_CSSML_Error extends PEAR_Error { // {{{ properties /** * Message in front of the error message * @var string $error_message_prefix */ var $error_message_prefix = 'XML_CSSML Error: '; // }}} // {{{ constructor /** * Creates a XML_CSSML error object, extending the PEAR_Error class * * @param int $code the xpath error code * @param int $mode (optional) the reaction either return, die or trigger/callback * @param int $level (optional) intensity of the error (PHP error code) * @param mixed $debuginfo (optional) information that can inform user as to nature of error * * @access private */ function XML_CSSML_Error($code = XML_CSSML_ERROR, $mode = PEAR_ERROR_RETURN, $level = E_USER_NOTICE, $debuginfo = null) { if (is_int($code)) { $this->PEAR_Error(XML_CSSML::errorMessage($code), $code, $mode, $level, $debuginfo); } else { $this->PEAR_Error("Invalid error code: $code", XML_CSSML_ERROR, $mode, $level, $debuginfo); } } // }}} } ?>