1 // $Id: ParserConfigurationException.java,v 1.2 2003/12/06 00:21:41 jsuttor Exp $2 /*3 * @(#)ParserConfigurationException.java 1.12 04/07/264 * 5 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.6 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.7 */8 9 package javax.xml.parsers;10 11 /**12 * Indicates a serious configuration error.13 *14 * @author <a HREF="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>15 * @version $Revision: 1.2 $, $Date: 2003/12/06 00:21:41 $16 */17 18 public class ParserConfigurationException extends Exception {19 20 /**21 * Create a new <code>ParserConfigurationException</code> with no22 * detail mesage.23 */24 25 public ParserConfigurationException() {26 super();27 }28 29 /**30 * Create a new <code>ParserConfigurationException</code> with31 * the <code>String</code> specified as an error message.32 *33 * @param msg The error message for the exception.34 */35 36 public ParserConfigurationException(String msg) {37 super(msg);38 }39 40 }41 42