FileDocCategorySizeDatePackage
ParserConfigurationException.javaAPI DocAndroid 1.5 API1293Wed May 06 22:41:06 BST 2009javax.xml.parsers

ParserConfigurationException

public class ParserConfigurationException extends Exception
Represents an exception that occurred during the configuration of parser.
since
Android 1.0

Fields Summary
Constructors Summary
public ParserConfigurationException()
Creates a new {@code ParserConfigurationException} with no error message.

since
Android 1.0

        super();
    
public ParserConfigurationException(String msg)
Creates a new {@code ParserConfigurationException} with a given error message.

param
msg the error message.
since
Android 1.0

        super(msg);
    
Methods Summary