/*
* Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.xml.parsers;
/**
* Indicates a serious configuration error.
*
* @author Jeff Suttor
*/
public class ParserConfigurationException extends Exception {
/**
* Create a new ParserConfigurationException
with no
* detail mesage.
*/
public ParserConfigurationException() {
super();
}
/**
* Create a new ParserConfigurationException
with
* the String
specified as an error message.
*
* @param msg The error message for the exception.
*/
public ParserConfigurationException(String msg) {
super(msg);
}
}