src/share/classes/java/rmi/server/ExportException.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 @@
  * exported via the constructors and <code>exportObject</code> methods of
  * <code>java.rmi.server.UnicastRemoteObject</code> and
  * <code>java.rmi.activation.Activatable</code>.
  *
  * @author  Ann Wollrath
- * @since   JDK1.1
+ * @since   1.1
  * @see java.rmi.server.UnicastRemoteObject
  * @see java.rmi.activation.Activatable
  */
 public class ExportException extends java.rmi.RemoteException {
 

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

@@ -57,11 +57,11 @@
      * Constructs an <code>ExportException</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 ExportException(String s, Exception ex) {
         super(s, ex);
     }