001 // SAXNotRecognizedException.java - unrecognized feature or value.
002 // http://www.saxproject.org
003 // Written by David Megginson
004 // NO WARRANTY! This class is in the Public Domain.
005 // $Id: SAXNotRecognizedException.java,v 1.1 2004/12/23 22:38:42 mark Exp $
006
007 package org.xml.sax;
008
009
010 /**
011 * Exception class for an unrecognized identifier.
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 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
017 * for further information.
018 * </blockquote>
019 *
020 * <p>An XMLReader will throw this exception when it finds an
021 * unrecognized feature or property identifier; SAX applications and
022 * extensions may use this class for other, similar purposes.</p>
023 *
024 * @since SAX 2.0
025 * @author David Megginson
026 * @version 2.0.1 (sax2r2)
027 * @see org.xml.sax.SAXNotSupportedException
028 */
029 public class SAXNotRecognizedException extends SAXException
030 {
031
032 /**
033 * Default constructor.
034 */
035 public SAXNotRecognizedException ()
036 {
037 super();
038 }
039
040
041 /**
042 * Construct a new exception with the given message.
043 *
044 * @param message The text message of the exception.
045 */
046 public SAXNotRecognizedException (String message)
047 {
048 super(message);
049 }
050
051 }
052
053 // end of SAXNotRecognizedException.java