The LibXMLError class
Contains various information about errors thrown by libxml. The error codes are described within the official xmlError API documentation.
Intro
Contains various information about errors thrown by libxml. The error codes are described within the official xmlError API documentation.
Class synopsis
Properties
levelthe severity of the error (one of the following constants:
LIBXML_ERR_WARNING,LIBXML_ERR_ERRORorLIBXML_ERR_FATAL)codeThe error's code.
columnThe column where the error occurred.
NoteThis property isn't entirely implemented in libxml and therefore
0is often returned.messageThe error message, if any.
fileThe filename, or empty if the XML was loaded from a string.
lineThe line where the error occurred.