You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
896 B
57 lines
896 B
/*
|
|
* 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 <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
|
|
*/
|
|
|
|
public class ParserConfigurationException extends Exception {
|
|
|
|
/**
|
|
* Create a new <code>ParserConfigurationException</code> with no
|
|
* detail mesage.
|
|
*/
|
|
|
|
public ParserConfigurationException() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Create a new <code>ParserConfigurationException</code> with
|
|
* the <code>String</code> specified as an error message.
|
|
*
|
|
* @param msg The error message for the exception.
|
|
*/
|
|
|
|
public ParserConfigurationException(String msg) {
|
|
super(msg);
|
|
}
|
|
|
|
}
|