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: // $Id: SAXNotRecognizedException.java,v 1.1.1.1 2002/05/03 23:29:41 yuvalo Exp $
07:
08: package org.xml.sax;
09:
10: /**
11: * Exception class for an unrecognized identifier.
12: *
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>
19: *
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>
23: *
24: * @since SAX 2.0
25: * @author David Megginson
26: * @version 2.0.1 (sax2r2)
27: * @see org.xml.sax.SAXNotSupportedException
28: */
29: public class SAXNotRecognizedException extends SAXException {
30:
31: /**
32: * Default constructor.
33: */
34: public SAXNotRecognizedException() {
35: super ();
36: }
37:
38: /**
39: * Construct a new exception with the given message.
40: *
41: * @param message The text message of the exception.
42: */
43: public SAXNotRecognizedException(String message) {
44: super (message);
45: }
46:
47: }
48:
49: // end of SAXNotRecognizedException.java
|