]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/org/xml/sax/SAXNotSupportedException.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / org / xml / sax / SAXNotSupportedException.java
diff --git a/libjava/org/xml/sax/SAXNotSupportedException.java b/libjava/org/xml/sax/SAXNotSupportedException.java
deleted file mode 100644 (file)
index 3376d47..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-// SAXNotSupportedException.java - unsupported feature or value.\r
-// Written by David Megginson, sax@megginson.com\r
-// NO WARRANTY!  This class is in the Public Domain.\r
-\r
-// $Id: SAXNotSupportedException.java,v 1.1 2000/10/02 02:43:17 sboag Exp $\r
-\r
-\r
-package org.xml.sax;\r
-\r
-/**\r
- * Exception class for an unsupported operation.\r
- *\r
- * <blockquote>\r
- * <em>This module, both source code and documentation, is in the\r
- * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>\r
- * </blockquote>\r
- *\r
- * <p>An XMLReader will throw this exception when it recognizes a\r
- * feature or property identifier, but cannot perform the requested\r
- * operation (setting a state or value).  Other SAX2 applications and\r
- * extensions may use this class for similar purposes.</p>\r
- *\r
- * @since SAX 2.0\r
- * @author David Megginson, \r
- *         <a href="mailto:sax@megginson.com">sax@megginson.com</a>\r
- * @version 2.0\r
- * @see org.xml.sax.SAXNotRecognizedException \r
- */\r
-public class SAXNotSupportedException extends SAXException\r
-{\r
-\r
-    /**\r
-     * Construct a new exception with the given message.\r
-     *\r
-     * @param message The text message of the exception.\r
-     */\r
-    public SAXNotSupportedException (String message)\r
-    {\r
-       super(message);\r
-    }\r
-\r
-}\r
-\r
-// end of SAXNotSupportedException.java\r