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