01: // SAXNotRecognizedException.java - unrecognized feature or value.
02: // Written by David Megginson, sax@megginson.com
03: // NO WARRANTY! This class is in the Public Domain.
04:
05: // $Id$
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: * </blockquote>
16: *
17: * <p>An XMLReader will throw this exception when it finds an
18: * unrecognized feature or property identifier; SAX applications and
19: * extensions may use this class for other, similar purposes.</p>
20: *
21: * @since SAX 2.0
22: * @author David Megginson,
23: * <a href="mailto:sax@megginson.com">sax@megginson.com</a>
24: * @version 2.0
25: * @see org.xml.sax.SAXNotSupportedException
26: */
27: public class SAXNotRecognizedException extends SAXException {
28:
29: /**
30: * Construct a new exception with the given message.
31: *
32: * @param message The text message of the exception.
33: */
34: public SAXNotRecognizedException(String message) {
35: super (message);
36: }
37:
38: }
39:
40: // end of SAXNotRecognizedException.java
|