01: // SAXNotSupportedException.java - unsupported 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 unsupported operation.
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 recognizes a
18: * feature or property identifier, but cannot perform the requested
19: * operation (setting a state or value). Other SAX2 applications and
20: * extensions may use this class for similar purposes.</p>
21: *
22: * @since SAX 2.0
23: * @author David Megginson,
24: * <a href="mailto:sax@megginson.com">sax@megginson.com</a>
25: * @version 2.0
26: * @see org.xml.sax.SAXNotRecognizedException
27: */
28: public class SAXNotSupportedException extends SAXException {
29:
30: /**
31: * Construct a new exception with the given message.
32: *
33: * @param message The text message of the exception.
34: */
35: public SAXNotSupportedException(String message) {
36: super (message);
37: }
38:
39: }
40:
41: // end of SAXNotSupportedException.java
|