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