#include <XMLNodeIterator.h>
Public Member Functions | |
XMLParserError (const char *msg, int severity, xmlTextReaderLocatorPtr locator, int docLine, int docColumn) throw () | |
Constructor. | |
~XMLParserError () throw () | |
std::string | msg () const throw () |
The message of the errors. | |
int | severity () const throw () |
The severity of this error. | |
xmlTextReaderLocatorPtr | locator () const throw () |
See libxml2 documentation. | |
int | docLine () const throw () |
The line number in the xml document where the error occurred. | |
int | docColumn () const throw () |
The column number in the xml document where the error occurred. | |
std::string | position () const throw () |
Gives a string describing the position in the xml document. | |
Private Attributes | |
std::string | _msg |
int | _severity |
xmlTextReaderLocatorPtr | _locator |
int | _docLine |
int | _docColumn |
Definition at line 46 of file XMLNodeIterator.h.
|
Constructor.
Definition at line 59 of file XMLNodeIterator.cc. |
|
Definition at line 69 of file XMLNodeIterator.cc. |
|
The message of the errors.
Definition at line 72 of file XMLNodeIterator.cc. References _msg. |
|
The severity of this error.
Definition at line 77 of file XMLNodeIterator.cc. References _severity. |
|
See libxml2 documentation.
Definition at line 82 of file XMLNodeIterator.cc. References _locator. |
|
The line number in the xml document where the error occurred.
Definition at line 87 of file XMLNodeIterator.cc. References _docLine. |
|
The column number in the xml document where the error occurred.
Definition at line 92 of file XMLNodeIterator.cc. References _docColumn. |
|
Gives a string describing the position in the xml document. (either empty, or "at line ..., column ...") Definition at line 97 of file XMLNodeIterator.cc. References _docColumn, and _docLine. |
|
Definition at line 92 of file XMLNodeIterator.h. Referenced by msg(). |
|
Definition at line 93 of file XMLNodeIterator.h. Referenced by severity(). |
|
Definition at line 94 of file XMLNodeIterator.h. Referenced by locator(). |
|
Definition at line 95 of file XMLNodeIterator.h. Referenced by docLine(), and position(). |
|
Definition at line 96 of file XMLNodeIterator.h. Referenced by docColumn(), and position(). |