Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / external / sax / org / xml / sax / SAXNotSupportedException.java
bloba88ea36cb437c268960534c118c6c7b519099fb7
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.
5 // $Id: SAXNotSupportedException.java,v 1.1 2005/02/02 00:41:51 tromey Exp $
7 package org.xml.sax;
9 /**
10 * Exception class for an unsupported operation.
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 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
16 * for further information.
17 * </blockquote>
19 * <p>An XMLReader will throw this exception when it recognizes a
20 * feature or property identifier, but cannot perform the requested
21 * operation (setting a state or value). Other SAX2 applications and
22 * extensions may use this class for similar purposes.</p>
24 * @since SAX 2.0
25 * @author David Megginson
26 * @version 2.0.1 (sax2r2)
27 * @see org.xml.sax.SAXNotRecognizedException
29 public class SAXNotSupportedException extends SAXException
32 /**
33 * Construct a new exception with no message.
35 public SAXNotSupportedException ()
37 super();
41 /**
42 * Construct a new exception with the given message.
44 * @param message The text message of the exception.
46 public SAXNotSupportedException (String message)
48 super(message);
53 // end of SAXNotSupportedException.java