1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.xml.parsers;
  6. /**
  7. * Indicates a serious configuration error.
  8. *
  9. * @since JAXP 1.0
  10. * @version 1.0
  11. */
  12. public class ParserConfigurationException extends Exception {
  13. /**
  14. * Create a new <code>ParserConfigurationException</code> with no
  15. * detail mesage.
  16. */
  17. public ParserConfigurationException() {
  18. super();
  19. }
  20. /**
  21. * Create a new <code>ParserConfigurationException</code> with
  22. * the <code>String</code> specified as an error message.
  23. *
  24. * @param msg The error message for the exception.
  25. */
  26. public ParserConfigurationException(String msg) {
  27. super(msg);
  28. }
  29. }