< prev index next >

src/java.desktop/share/classes/sun/applet/AppletIOException.java

Print this page

        

@@ -29,14 +29,18 @@
 
 /**
  * An applet IO exception.
  *
  * @author      Koji Uno
+ *
+ * @deprecated The Applet API is deprecated. See the
+ * <a href="../../java/applet/package-summary.html"> java.applet package
+ * documentation</a> for further information.
  */
 @SuppressWarnings("serial") // JDK implementation class
-public
-class AppletIOException extends IOException {
+@Deprecated(since = "9")
+public class AppletIOException extends IOException {
     private String key = null;
     private Object msgobj = null;
 
     public AppletIOException(String key) {
         super(key);
< prev index next >