This commit was manufactured by cvs2svn to create branch 'gomp-branch'.
[official-gcc.git] / libjava / org / xml / sax / SAXNotSupportedException.java
blob2939eb192a55976a46c795213dde232adfa0734b
1 // SAXNotSupportedException.java - unsupported feature or value.
2 // http://www.saxproject.org
3 // Written by David Megginson
4 // NO WARRANTY! This class is in the Public Domain.
6 // $Id: SAXNotSupportedException.java,v 1.4.2.3 2002/01/29 21:34:14 dbrownell Exp $
9 package org.xml.sax;
11 /**
12 * Exception class for an unsupported operation.
14 * <blockquote>
15 * <em>This module, both source code and documentation, is in the
16 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
17 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
18 * for further information.
19 * </blockquote>
21 * <p>An XMLReader will throw this exception when it recognizes a
22 * feature or property identifier, but cannot perform the requested
23 * operation (setting a state or value). Other SAX2 applications and
24 * extensions may use this class for similar purposes.</p>
26 * @since SAX 2.0
27 * @author David Megginson
28 * @version 2.0.1 (sax2r2)
29 * @see org.xml.sax.SAXNotRecognizedException
31 public class SAXNotSupportedException extends SAXException
34 /**
35 * Construct a new exception with no message.
37 public SAXNotSupportedException ()
39 super();
43 /**
44 * Construct a new exception with the given message.
46 * @param message The text message of the exception.
48 public SAXNotSupportedException (String message)
50 super(message);
55 // end of SAXNotSupportedException.java