The ParseException class of the com.ms.xml.parser package signals that a parsing exception of some sort has occurred.
public class ParseException extends Exception { // Fields public int column; public int line; public Object owner; // Constructors public ParseException(); public ParseException(String s); public ParseException(String s, int line, int column, Object owner); }
Exception | +--ParseException