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