January 22, 2002 - Parsing Error Attributes

Yehuda Shiran January 22, 2002
Parsing Error Attributes
Tips: January 2002

Yehuda Shiran, Ph.D.
Doc JavaScript

The DOMDocument's parseError property returns an IXMLDOMParseError object that contains information about the last parsing error. The object's properties are:

errorCode. Code number of the error. A zero value means there was no error. Numbers are negative numbers close to the smallest integer allowed.
  • filepos. The absolute file position where the error occurred.
  • line. The line number where the error occurred.
  • linepos. The character position within the line where the error occurred.
  • reason. Explains the reason of the error.
  • srcText. The full text of the line where the error occurred.
  • url. The URL of the XML file where the last parsing error occurred.