01: /*
02: * @(#)ParserConfigurationException.java 1.6 01/12/03
03: *
04: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
05: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
06: */
07:
08: package javax.xml.parsers;
09:
10: /**
11: * Indicates a serious configuration error.
12: *
13: * @since JAXP 1.0
14: * @version 1.0
15: */
16:
17: public class ParserConfigurationException extends Exception {
18:
19: /**
20: * Create a new <code>ParserConfigurationException</code> with no
21: * detail mesage.
22: */
23:
24: public ParserConfigurationException() {
25: super ();
26: }
27:
28: /**
29: * Create a new <code>ParserConfigurationException</code> with
30: * the <code>String</code> specified as an error message.
31: *
32: * @param msg The error message for the exception.
33: */
34:
35: public ParserConfigurationException(String msg) {
36: super(msg);
37: }
38:
39: }
|