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