1. // SAXNotRecognizedException.java - unrecognized feature or value.
  2. // Written by David Megginson, sax@megginson.com
  3. // NO WARRANTY! This class is in the Public Domain.
  4. // $Id: SAXNotRecognizedException.java,v 1.2 2001/08/01 06:43:18 tcng Exp $
  5. package org.xml.sax;
  6. /**
  7. * Exception class for an unrecognized identifier.
  8. *
  9. * <blockquote>
  10. * <em>This module, both source code and documentation, is in the
  11. * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
  12. * </blockquote>
  13. *
  14. * <p>An XMLReader will throw this exception when it finds an
  15. * unrecognized feature or property identifier; SAX applications and
  16. * extensions may use this class for other, similar purposes.</p>
  17. *
  18. * @since SAX 2.0
  19. * @author David Megginson,
  20. * <a href="mailto:sax@megginson.com">sax@megginson.com</a>
  21. * @version 2.0
  22. * @see org.xml.sax.SAXNotSupportedException
  23. */
  24. public class SAXNotRecognizedException extends SAXException
  25. {
  26. /**
  27. * Construct a new exception with the given message.
  28. *
  29. * @param message The text message of the exception.
  30. */
  31. public SAXNotRecognizedException (String message)
  32. {
  33. super(message);
  34. }
  35. }
  36. // end of SAXNotRecognizedException.java