1. // SAXNotRecognizedException.java - unrecognized feature or value.
  2. // http://www.saxproject.org
  3. // Written by David Megginson
  4. // NO WARRANTY! This class is in the Public Domain.
  5. // $Id: SAXNotRecognizedException.java,v 1.2.24.1.2.1 2004/06/08 22:44:56 rameshm Exp $
  6. package org.xml.sax;
  7. /**
  8. * Exception class for an unrecognized identifier.
  9. *
  10. * <blockquote>
  11. * <em>This module, both source code and documentation, is in the
  12. * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
  13. * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
  14. * for further information.
  15. * </blockquote>
  16. *
  17. * <p>An XMLReader will throw this exception when it finds an
  18. * unrecognized feature or property identifier; SAX applications and
  19. * extensions may use this class for other, similar purposes.</p>
  20. *
  21. * @since SAX 2.0
  22. * @author David Megginson
  23. * @version 2.0.1 (sax2r2)
  24. * @see org.xml.sax.SAXNotSupportedException
  25. */
  26. public class SAXNotRecognizedException extends SAXException
  27. {
  28. /**
  29. * Default constructor.
  30. */
  31. public SAXNotRecognizedException ()
  32. {
  33. super();
  34. }
  35. /**
  36. * Construct a new exception with the given message.
  37. *
  38. * @param message The text message of the exception.
  39. */
  40. public SAXNotRecognizedException (String message)
  41. {
  42. super(message);
  43. }
  44. // Added serialVersionUID to preserve binary compatibility
  45. static final long serialVersionUID = 5440506620509557213L;
  46. }
  47. // end of SAXNotRecognizedException.java