1. // SAXNotSupportedException.java - unsupported feature or value.
  2. // Written by David Megginson, sax@megginson.com
  3. // NO WARRANTY! This class is in the Public Domain.
  4. // $Id: SAXNotSupportedException.java,v 1.2 2001/08/01 06:43:18 tcng Exp $
  5. package org.xml.sax;
  6. /**
  7. * Exception class for an unsupported operation.
  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 recognizes a
  15. * feature or property identifier, but cannot perform the requested
  16. * operation (setting a state or value). Other SAX2 applications and
  17. * extensions may use this class for similar purposes.</p>
  18. *
  19. * @since SAX 2.0
  20. * @author David Megginson,
  21. * <a href="mailto:sax@megginson.com">sax@megginson.com</a>
  22. * @version 2.0
  23. * @see org.xml.sax.SAXNotRecognizedException
  24. */
  25. public class SAXNotSupportedException extends SAXException
  26. {
  27. /**
  28. * Construct a new exception with the given message.
  29. *
  30. * @param message The text message of the exception.
  31. */
  32. public SAXNotSupportedException (String message)
  33. {
  34. super(message);
  35. }
  36. }
  37. // end of SAXNotSupportedException.java