Represents an error (of what kind?) in the document being parsed
Java Binding:
package org.w3c.dom.loadSave;
public interface ParserErrorEvent {
  public int    getErrorCode();
  public int    getFilepos();
  public int    getLine();
  public int    getLinepos();
  public String getReason();
  public String getSrcText();
  public String getUrl();
}
IDL:
interface ParserErrorEvent {
  readonly attribute long      errorCode;
  readonly attribute long      filepos;
  readonly attribute long      line;
  readonly attribute long      linepos;
  readonly attribute DOMString reason;
  readonly attribute DOMString srcText;
  readonly attribute DOMString url;
};