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