FileDocCategorySizeDatePackage
ParserConfigurationException.javaAPI DocJava SE 5 API1020Fri Aug 26 14:58:22 BST 2005javax.xml.parsers

ParserConfigurationException

public class ParserConfigurationException extends Exception
Indicates a serious configuration error.
author
Jeff Suttor
version
$Revision: 1.2 $, $Date: 2003/12/06 00:21:41 $

Fields Summary
Constructors Summary
public ParserConfigurationException()
Create a new ParserConfigurationException with no detail mesage.

        super();
    
public ParserConfigurationException(String msg)
Create a new ParserConfigurationException with the String specified as an error message.

param
msg The error message for the exception.

        super(msg);
    
Methods Summary