1
2 /*
3 * Licensed to the Apache Software Foundation (ASF) under one or more
4 * contributor license agreements. See the NOTICE file distributed with
5 * this work for additional information regarding copyright ownership.
6 * The ASF licenses this file to You under the Apache License, Version 2.0
7 * (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 // $Id: ParserConfigurationException.java 569981 2007-08-27 03:59:07Z mrglavas $
20
21 package javax.xml.parsers;
22
23 /**
24 * Indicates a serious configuration error.
25 *
26 * @author <a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
27 * @version $Revision: 569981 $, $Date: 2007-08-26 23:59:07 -0400 (Sun, 26 Aug 2007) $
28 */
29
30 public class ParserConfigurationException extends Exception {
31
32 /**
33 * Create a new <code>ParserConfigurationException</code> with no
34 * detail message.
35 */
36
37 public ParserConfigurationException() {
38 super();
39 }
40
41 /**
42 * Create a new <code>ParserConfigurationException</code> with
43 * the <code>String</code> specified as an error message.
44 *
45 * @param msg The error message for the exception.
46 */
47
48 public ParserConfigurationException(String msg) {
49 super(msg);
50 }
51
52 }
53