Microsoft SDK for Java

ParseException Class

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);
}

Hierarchy

Exception
  |
  +--ParseException

© 1999 Microsoft Corporation. All rights reserved. Terms of use.