document the LibXMLError class

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@192709 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2005-08-07 17:16:20 +00:00
parent ba9debc1d8
commit fefcb81d42

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<reference id="ref.libxml">
<title>libxml Functions</title>
<titleabbrev>libxml</titleabbrev>
@ -22,6 +22,47 @@
2.6.0.
</para>
</section>
<section id='libxml.classes'>
&reftitle.classes;
<section id='libxml.class.libxmlerror'>
<title><classname>LibXMLError</classname></title>
<section id='libxml.class.libxml.properties'>
&reftitle.properties;
<itemizedlist>
<listitem>
<para>code - the error's code</para>
</listitem>
<listitem>
<para>
column - the column where the error occurred. Please note that
this property isn't enterely implemented in libxml and therefore
<literal>0</literal> is often returned.
</para>
</listitem>
<listitem>
<para>file - the filename, or empty if the XML was loaded from a string</para>
</listitem>
<listitem>
<para>
level - the severity of the error (one of the following constants:
<constant>LIBXML_ERR_WARNING</constant>,
<constant>LIBXML_ERR_ERROR</constant> or
<constant>LIBXML_ERR_FATAL</constant>)
</para>
</listitem>
<listitem>
<para>line - the line where the error occurred</para>
</listitem>
<listitem>
<para>message - the error message</para>
</listitem>
</itemizedlist>
</section>
</section>
</section>
&reference.libxml.constants;
</partintro>
&reference.libxml.functions;