01: // SAXNotRecognizedException.java - unrecognized feature or value.
02: // http://www.saxproject.org
03: // Written by David Megginson
04: // NO WARRANTY! This class is in the Public Domain.
05: // $Id: SAXNotRecognizedException.java,v 1.6 2002/02/01 20:06:20 db Exp $
06:
07: package org.xml.sax;
08:
09: /**
10: * Exception class for an unrecognized identifier.
11: *
12: * <blockquote>
13: * <em>This module, both source code and documentation, is in the
14: * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
15: * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
16: * for further information.
17: * </blockquote>
18: *
19: * <p>An XMLReader will throw this exception when it finds an
20: * unrecognized feature or property identifier; SAX applications and
21: * extensions may use this class for other, similar purposes.</p>
22: *
23: * @since SAX 2.0
24: * @author David Megginson
25: * @version 2.0.1 (sax2r2)
26: * @see org.xml.sax.SAXNotSupportedException
27: */
28: public class SAXNotRecognizedException extends SAXException {
29:
30: /**
31: * Default constructor.
32: */
33: public SAXNotRecognizedException() {
34: super ();
35: }
36:
37: /**
38: * Construct a new exception with the given message.
39: *
40: * @param message The text message of the exception.
41: */
42: public SAXNotRecognizedException(String message) {
43: super (message);
44: }
45:
46: }
47:
48: // end of SAXNotRecognizedException.java
|