Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / external / sax / org / xml / sax / SAXNotRecognizedException.java
blobe96bd5bf33484129db89805ee3f55781dda3f2ca
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.
5 // $Id: SAXNotRecognizedException.java,v 1.1 2005/02/02 00:41:51 tromey Exp $
7 package org.xml.sax;
10 /**
11 * Exception class for an unrecognized identifier.
13 * <blockquote>
14 * <em>This module, both source code and documentation, is in the
15 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
16 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
17 * for further information.
18 * </blockquote>
20 * <p>An XMLReader will throw this exception when it finds an
21 * unrecognized feature or property identifier; SAX applications and
22 * extensions may use this class for other, similar purposes.</p>
24 * @since SAX 2.0
25 * @author David Megginson
26 * @version 2.0.1 (sax2r2)
27 * @see org.xml.sax.SAXNotSupportedException
29 public class SAXNotRecognizedException extends SAXException
32 /**
33 * Default constructor.
35 public SAXNotRecognizedException ()
37 super();
41 /**
42 * Construct a new exception with the given message.
44 * @param message The text message of the exception.
46 public SAXNotRecognizedException (String message)
48 super(message);
53 // end of SAXNotRecognizedException.java