src/share/classes/java/rmi/StubNotFoundException.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

@@ -31,11 +31,11 @@
  * A <code>StubNotFoundException</code> may also be
  * thrown when an activatable object is registered via the
  * <code>java.rmi.activation.Activatable.register</code> method.
  *
  * @author  Roger Riggs
- * @since   JDK1.1
+ * @since   1.1
  * @see     java.rmi.server.UnicastRemoteObject
  * @see     java.rmi.activation.Activatable
  */
 public class StubNotFoundException extends RemoteException {
 

@@ -45,11 +45,11 @@
     /**
      * Constructs a <code>StubNotFoundException</code> with the specified
      * detail message.
      *
      * @param s the detail message
-     * @since JDK1.1
+     * @since 1.1
      */
     public StubNotFoundException(String s) {
         super(s);
     }
 

@@ -57,11 +57,11 @@
      * Constructs a <code>StubNotFoundException</code> with the specified
      * detail message and nested exception.
      *
      * @param s the detail message
      * @param ex the nested exception
-     * @since JDK1.1
+     * @since 1.1
      */
     public StubNotFoundException(String s, Exception ex) {
         super(s, ex);
     }
 }