001// SAXNotRecognizedException.java - unrecognized feature or value.
002// Written by David Megginson, sax@megginson.com
003// NO WARRANTY!  This class is in the Public Domain.
004
005// $Id: SAXNotRecognizedException.java,v 1.1 2001/03/05 21:40:06 jstrachan Exp $
006
007
008package org.xml.sax;
009
010
011/**
012 * Exception class for an unrecognized identifier.
013 *
014 * <blockquote>
015 * <em>This module, both source code and documentation, is in the
016 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
017 * </blockquote>
018 *
019 * <p>An XMLReader will throw this exception when it finds an
020 * unrecognized feature or property identifier; SAX applications and
021 * extensions may use this class for other, 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.SAXNotSupportedException
028 */
029public class SAXNotRecognizedException 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 SAXNotRecognizedException (String message)
038    {
039        super(message);
040    }
041
042}
043
044// end of SAXNotRecognizedException.java