001// SAXNotSupportedException.java - unsupported feature or value.
002// Written by David Megginson, sax@megginson.com
003// NO WARRANTY!  This class is in the Public Domain.
004
005// $Id: SAXNotSupportedException.java,v 1.1 2001/03/05 21:40:06 jstrachan Exp $
006
007
008package org.xml.sax;
009
010/**
011 * Exception class for an unsupported operation.
012 *
013 * <blockquote>
014 * <em>This module, both source code and documentation, is in the
015 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
016 * </blockquote>
017 *
018 * <p>An XMLReader will throw this exception when it recognizes a
019 * feature or property identifier, but cannot perform the requested
020 * operation (setting a state or value).  Other SAX2 applications and
021 * extensions may use this class for similar purposes.</p>
022 *
023 * @since SAX 2.0
024 * @author David Megginson, 
025 *         <a href="mailto:sax@megginson.com">sax@megginson.com</a>
026 * @version 2.0
027 * @see org.xml.sax.SAXNotRecognizedException 
028 */
029public class SAXNotSupportedException extends SAXException
030{
031
032    /**
033     * Construct a new exception with the given message.
034     *
035     * @param message The text message of the exception.
036     */
037    public SAXNotSupportedException (String message)
038    {
039        super(message);
040    }
041
042}
043
044// end of SAXNotSupportedException.java