FileDocCategorySizeDatePackage
ParserConfigurationException.javaAPI DocJava SE 6 API1706Tue Jun 10 00:27:08 BST 2008javax.xml.parsers

ParserConfigurationException

public class ParserConfigurationException extends Exception
Indicates a serious configuration error.
author
Jeff Suttor
version
$Revision: 1.2 $, $Date: 2005/06/10 03:50:29 $

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