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.1.2.1 2001/11/15 19:46:10 edwingo 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.0r2pre w/ JAXP 1.1 signatures
  22. * @see org.xml.sax.SAXNotSupportedException
  23. */
  24. public class SAXNotRecognizedException extends SAXException
  25. {
  26. // /**
  27. // * Default constructor.
  28. // */
  29. // public SAXNotRecognizedException ()
  30. // {
  31. // super();
  32. // }
  33. /**
  34. * Construct a new exception with the given message.
  35. *
  36. * @param message The text message of the exception.
  37. */
  38. public SAXNotRecognizedException (String message)
  39. {
  40. super(message);
  41. }
  42. }
  43. // end of SAXNotRecognizedException.java