FSF GCC merge 02/23/03
[official-gcc.git] / libjava / org / xml / sax / SAXNotRecognizedException.java
blob83aac69a7d38d70c13ff3e8a2e35b0b65e764330
1 // SAXNotRecognizedException.java - unrecognized feature or value.
2 // http://www.saxproject.org
3 // Written by David Megginson
4 // NO WARRANTY! This class is in the Public Domain.
6 // $Id: SAXNotRecognizedException.java,v 1.4.2.3 2002/01/29 21:34:14 dbrownell Exp $
9 package org.xml.sax;
12 /**
13 * Exception class for an unrecognized identifier.
15 * <blockquote>
16 * <em>This module, both source code and documentation, is in the
17 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
18 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
19 * for further information.
20 * </blockquote>
22 * <p>An XMLReader will throw this exception when it finds an
23 * unrecognized feature or property identifier; SAX applications and
24 * extensions may use this class for other, similar purposes.</p>
26 * @since SAX 2.0
27 * @author David Megginson
28 * @version 2.0.1 (sax2r2)
29 * @see org.xml.sax.SAXNotSupportedException
31 public class SAXNotRecognizedException extends SAXException
34 /**
35 * Default constructor.
37 public SAXNotRecognizedException ()
39 super();
43 /**
44 * Construct a new exception with the given message.
46 * @param message The text message of the exception.
48 public SAXNotRecognizedException (String message)
50 super(message);
55 // end of SAXNotRecognizedException.java