LibXMLError
class LibXMLError (View source)
Contains various information about errors thrown by libxml. The error codes are described within the official xmlError API documentation.
Properties
int | $level | the severity of the error (one of the following constants: ```LIBXML_ERR_WARNING```, ```LIBXML_ERR_ERROR``` or ```LIBXML_ERR_FATAL```) |
|
int | $code | The error's code. |
|
int | $column | The column where the error occurred. |
|
string | $message | The error message, if any. |
|
string | $file | The filename, or empty if the XML was loaded from a string. |
|
int | $line | The line where the error occurred. |